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: 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 To: Heli Nix Cc: "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 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: 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 On Thu, Sep 3, 2015 at 10:32 AM, Heli Nix 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 m= achine and so my program gets access to this local python and runs successf= ully. > > How can I do this in Linux ? ( I want to install python plus my program o= n the user machine.) I do not want to use the user=C2=B4s python or to inst= all python on the user=C2=B4s 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 --=20 Joel Goldstick http://joelgoldstick.com