Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #95941
| Path | csiph.com!eternal-september.org!feeder.eternal-september.org!border1.nntp.ams1.giganews.com!nntp.giganews.com!newsfeed.xs4all.nl!newsfeed8.news.xs4all.nl!nzpost1.xs4all.net!not-for-mail |
|---|---|
| Return-Path | <joel.goldstick@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.009 |
| X-Spam-Evidence | '*H*': 0.98; '*S*': 0.00; 'subject:Python': 0.05; 'cc:addr:python-list': 0.09; 'scripts': 0.09; 'advance': 0.10; 'python': 0.10; 'thu,': 0.15; 'weapon': 0.16; 'wrote:': 0.16; 'runs': 0.18; 'load': 0.20; 'all,': 0.20; 'windows': 0.20; '2015': 0.20; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; 'machine': 0.21; '3.x': 0.22; 'libraries': 0.22; 'sep': 0.22; 'am,': 0.23; 'header:In-Reply-To:1': 0.24; 'install': 0.25; 'linux': 0.26; 'message-id:@mail.gmail.com': 0.27; 'url:mailman': 0.30; 'help,': 0.32; 'run': 0.33; 'url:python': 0.33; 'url:listinfo': 0.34; 'gets': 0.35; 'received:google.com': 0.35; 'url:org': 0.36; 'modules': 0.36; 'subject:: ': 0.37; 'thanks': 0.37; 'several': 0.38; 'along': 0.39; 'url:mail': 0.40; 'your': 0.60; 'engine': 0.62; 'dear': 0.67; '10:32': 0.84; 'pip': 0.84; 'joel': 0.91 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=yp/GbpHrZn5zN3Dxe6IthEi7LANoQDaGAcKgctYI/DE=; b=BSd+vx5e+aj8/vxbAZLl7YCIWcjNzxJrPA1lDd6ufbA3yoSQGlNrlmbc7Af7xSfcot qD0P36J58TIiU7gjoywlQKGgFbEIPT1BCkP0mgnsiq5oP2vZu07SnZvfKIaRd/sm+1+F OEaVxXKpIN83XlNxXRZESO5mPxrKE+1Al6Rj2ZrQMlD9c+s42VJMa78dGmwU3LWP7PXM eR+nLk34L8A3l/hddQhP+zK+H28hCpHZQakPOR+fLTU60incpBxDBRExSg031/PX1rRA xxMg9X3NAG8SMwc+kwIYmbcLkwGPj3DfhelHvFq/W76luEowPS3nlyxr3AkF/wH+/apu HiSg== |
| MIME-Version | 1.0 |
| X-Received | by 10.50.79.196 with SMTP id l4mr13676001igx.48.1441294048892; Thu, 03 Sep 2015 08:27:28 -0700 (PDT) |
| In-Reply-To | <4d764608-4091-4600-a1ed-ac11bd790792@googlegroups.com> |
| References | <4d764608-4091-4600-a1ed-ac11bd790792@googlegroups.com> |
| Date | Thu, 3 Sep 2015 11:27:28 -0400 |
| Subject | Re: Porting Python Application to a new linux machine |
| From | Joel Goldstick <joel.goldstick@gmail.com> |
| To | Heli Nix <hemla21@gmail.com> |
| Cc | "python-list@python.org" <python-list@python.org> |
| Content-Type | text/plain; charset=UTF-8 |
| Content-Transfer-Encoding | quoted-printable |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.20+ |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.71.1441294058.8327.python-list@python.org> (permalink) |
| Lines | 27 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1441294058 news.xs4all.nl 23854 [2001:888:2000:d::a6]:40605 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:95941 |
Show key headers only | View raw
On Thu, Sep 3, 2015 at 10:32 AM, Heli Nix <hemla21@gmail.com> wrote: > Dear all, > > I have my python scripts that use several python libraries such as h5py, pyside, numpy.... > > In Windows I have an installer that will install python locally on user machine and so my program gets access to this local python and runs successfully. > > How can I do this in Linux ? ( I want to install python plus my program on the user machine.) I do not want to use the user´s python or to install python on the user´s machine on root. > > Thanks in Advance for your help, > > -- > https://mail.python.org/mailman/listinfo/python-list Look into virtualenv or virtualenvwrapper. It will let you load a local python engine along with local copies of the modules you need to run your application. Pip is the weapon of choice to load the libraries, or pip3 with python 3.x -- Joel Goldstick http://joelgoldstick.com
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Porting Python Application to a new linux machine Heli Nix <hemla21@gmail.com> - 2015-09-03 07:32 -0700
Re: Porting Python Application to a new linux machine Joel Goldstick <joel.goldstick@gmail.com> - 2015-09-03 11:27 -0400
Re: Porting Python Application to a new linux machine Luca Menegotto <otlucaDELETE@DELETEyahoo.it> - 2015-09-03 17:31 +0200
Re: Porting Python Application to a new linux machine Chris Angelico <rosuav@gmail.com> - 2015-09-04 01:39 +1000
Re: Porting Python Application to a new linux machine Chris Angelico <rosuav@gmail.com> - 2015-09-04 01:55 +1000
Re: Porting Python Application to a new linux machine Luca Menegotto <otlucaDELETE@DELETEyahoo.it> - 2015-09-03 18:23 +0200
Re: Porting Python Application to a new linux machine Chris Angelico <rosuav@gmail.com> - 2015-09-04 02:49 +1000
Re: Porting Python Application to a new linux machine Luca Menegotto <otlucaDELETE@DELETEyahoo.it> - 2015-09-03 19:29 +0200
Re: Porting Python Application to a new linux machine Chris Angelico <rosuav@gmail.com> - 2015-09-04 03:33 +1000
Re: Porting Python Application to a new linux machine Laura Creighton <lac@openend.se> - 2015-09-04 00:26 +0200
Re: Porting Python Application to a new linux machine Christian Gollwitzer <auriocus@gmx.de> - 2015-09-04 07:43 +0200
Re: Porting Python Application to a new linux machine Grant Edwards <invalid@invalid.invalid> - 2015-09-04 13:16 +0000
PyInstaller+ Python3.5 (h5py import error) Heli Nix <hemla21@gmail.com> - 2015-09-23 09:20 -0700
Re: PyInstaller+ Python3.5 (h5py import error) Christian Gollwitzer <auriocus@gmx.de> - 2015-09-23 20:07 +0200
Re: PyInstaller+ Python3.5 (h5py import error) Heli Nix <hemla21@gmail.com> - 2015-09-24 02:58 -0700
Re: PyInstaller+ Python3.5 (h5py import error) Laura Creighton <lac@openend.se> - 2015-09-24 13:11 +0200
Re: PyInstaller+ Python3.5 (h5py import error) Hedieh E <hemla21@gmail.com> - 2015-09-25 01:53 -0700
csiph-web