Porting Python Application to a new linux machine

Joel Goldstick joel.goldstick at gmail.com
Thu Sep 3 11:27:28 EDT 2015


On Thu, Sep 3, 2015 at 10:32 AM, Heli Nix <hemla21 at 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



More information about the Python-list mailing list