Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #96728

Re: Packaging and deployment of standalone Python applications?

From Laura Creighton <lac@openend.se>
Subject Re: Packaging and deployment of standalone Python applications?
References <7360db29-ba81-4b84-99eb-dbeca2a888b8@googlegroups.com> <CAJ4+4aqUh5hDis=31XxD2DS_mHv8q08zwFBAxG_NDThv-979Tw@mail.gmail.com> <55F9C313.8040202@gmail.com>
Date 2015-09-17 00:19 +0200
Newsgroups comp.lang.python
Message-ID <mailman.678.1442441974.8327.python-list@python.org> (permalink)

Show all headers | View raw


In a message of Wed, 16 Sep 2015 21:29:23 +0200, Kristian Rink writes:
>Am 15.09.2015 um 08:59 schrieb paul.hermeneutic@gmail.com:
>>
>> https://docs.python.org/3/library/venv.html?highlight=venv#module-venv
>
>Thanks, this already is pretty close to what I need. Playing with this 
>and virtualenv, I figured out that this way it's pretty easily possible 
>to have isolated Python environments _locally_. However I failed to 
>package one of these environments and move it to, say, from my Ubuntu 
>development host to a remote Debian server, I end up with errors like 
>these while trying to run the Python off the environment on that host:
>
>/lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.14' not found
>
>I bundled all the stuff in the virtualenv and also made sure to 
>dereference the symlinks in there. Are Python binaries so closely tied 
>to a particular Linux environment / distribution that what I am about to 
>do is impossible? Is there a "generic" Python for Linux binary that 
>works on all distributions, as things are for Java?
>
>TIA and all the best,
>Kristian
>-- 
>https://mail.python.org/mailman/listinfo/python-list

Your problem is likely with the shared library search paths.
Different distributions put them in different places.  It's a real pain,
and the reason why docker is getting more popular.

According to
http://www.eyrie.org/~eagle/notes/rpath.html

there is a way to get around this by encoding the rpath in your
application, but I cannot vouch for it personally.

Laura

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Packaging and deployment of standalone Python applications? Kristian Rink <kawazu428@gmail.com> - 2015-09-13 23:58 -0700
  Re: Packaging and deployment of standalone Python applications? dieter <dieter@handshake.de> - 2015-09-15 07:46 +0200
  Re: Packaging and deployment of standalone Python applications? Christian Gollwitzer <auriocus@gmx.de> - 2015-09-15 08:17 +0200
  Re: Packaging and deployment of standalone Python applications? marco.nawijn@colosso.nl - 2015-09-15 04:25 -0700
    Re: Packaging and deployment of standalone Python applications? Laura Creighton <lac@openend.se> - 2015-09-15 14:04 +0200
  Re: Packaging and deployment of standalone Python applications? Kristian Rink <kawazu428@gmail.com> - 2015-09-16 21:29 +0200
    Re: Packaging and deployment of standalone Python applications? Christian Gollwitzer <auriocus@gmx.de> - 2015-09-17 09:24 +0200
      Re: Packaging and deployment of standalone Python applications? Chris Angelico <rosuav@gmail.com> - 2015-09-17 17:38 +1000
  Re: Packaging and deployment of standalone Python applications? Laura Creighton <lac@openend.se> - 2015-09-17 00:19 +0200
  Re: Packaging and deployment of standalone Python applications? Kristian Rink <kawazu428@gmail.com> - 2015-09-17 08:23 +0200
  Re: Packaging and deployment of standalone Python applications? Laura Creighton <lac@openend.se> - 2015-09-17 11:06 +0200
  Re: Packaging and deployment of standalone Python applications? m <mvoicem@gmail.com> - 2015-09-17 12:39 +0200
  Re: Packaging and deployment of standalone Python applications? Kristian Rink <kawazu428@gmail.com> - 2015-09-17 12:36 +0200

csiph-web