Re: Porting Python Application to a new linux machine

2015-09-04 Thread Grant Edwards
On 2015-09-04, Christian Gollwitzer wrote: > Am 03.09.15 um 16:32 schrieb Heli Nix: > >> 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 acc

Re: Porting Python Application to a new linux machine

2015-09-03 Thread Christian Gollwitzer
Am 03.09.15 um 16:32 schrieb Heli Nix: 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 d

Re: Porting Python Application to a new linux machine

2015-09-03 Thread Laura Creighton
In a message of Thu, 03 Sep 2015 07:32:55 -0700, Heli Nix writes: >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 l

Re: Porting Python Application to a new linux machine

2015-09-03 Thread Nick Sarbicki
I run ubuntu everywhere at home and python3 has come preinstalled since at least ubuntu 12.10. This article kind of covers it: https://wiki.ubuntu.com/Python Looks like they're suggesting that it's not been fully transitioned although definitely moving that way. On Thu, 3 Sep 2015 18:34 Chris An

Re: Porting Python Application to a new linux machine

2015-09-03 Thread Chris Angelico
On Fri, Sep 4, 2015 at 3:29 AM, Luca Menegotto wrote: > Il 03/09/2015 18:49, Chris Angelico ha scritto: > >> If you mean that typing "python" runs 2.7, then that's PEP 394 at >> work. For compatibility reasons, 'python' doesn't ever run Python 3. > > > Please forgive me, Il make it clearer. > I'm

Re: Porting Python Application to a new linux machine

2015-09-03 Thread Luca Menegotto
Il 03/09/2015 18:49, Chris Angelico ha scritto: If you mean that typing "python" runs 2.7, then that's PEP 394 at work. For compatibility reasons, 'python' doesn't ever run Python 3. Please forgive me, Il make it clearer. I'm pretty shure that Ubuntu 15.04 comes with Python 2.7. I don't rememb

Re: Porting Python Application to a new linux machine

2015-09-03 Thread Chris Angelico
On Fri, Sep 4, 2015 at 2:23 AM, Luca Menegotto wrote: > Il 03/09/2015 17:53, Nick Sarbicki ha scritto: >> >> Is 3.x the default on ubuntu now? My 14.10 is still 2.7. Although it >> does have python3 installed. > > > I've checked my Ubuntu 15.04, and the default is 2.7.9. > There is also Python3 (3

Re: Porting Python Application to a new linux machine

2015-09-03 Thread Brett Kugler
On Thu, Sep 3, 2015 at 10:39 AM, Chris Angelico wrote: > On Fri, Sep 4, 2015 at 1:31 AM, Luca Menegotto > wrote: > > Il 03/09/2015 16:32, Heli Nix ha scritto: > > > >> How can I do this in Linux ? > > > > > > As far as I know, in general a Linux distro comes with Python already > > installed. >

Re: Porting Python Application to a new linux machine

2015-09-03 Thread Luca Menegotto
Il 03/09/2015 17:53, Nick Sarbicki ha scritto: Is 3.x the default on ubuntu now? My 14.10 is still 2.7. Although it does have python3 installed. I've checked my Ubuntu 15.04, and the default is 2.7.9. There is also Python3 (3.4.3), but sorry, I can't remember if I've manually installed it or n

Re: Porting Python Application to a new linux machine

2015-09-03 Thread Nick Sarbicki
Is 3.x the default on ubuntu now? My 14.10 is still 2.7. Although it does have python3 installed. On Thu, 3 Sep 2015 16:40 Chris Angelico wrote: > On Fri, Sep 4, 2015 at 1:31 AM, Luca Menegotto > wrote: > > Il 03/09/2015 16:32, Heli Nix ha scritto: > > > >> How can I do this in Linux ? > > > >

Re: Porting Python Application to a new linux machine

2015-09-03 Thread Chris Angelico
On Fri, Sep 4, 2015 at 1:53 AM, Nick Sarbicki wrote: > Is 3.x the default on ubuntu now? My 14.10 is still 2.7. Although it does > have python3 installed. I'm not sure. I think I read somewhere that the newest Ubuntus would ship with python3 preinstalled, but python2 not (though of course it'd be

Re: Porting Python Application to a new linux machine

2015-09-03 Thread Chris Angelico
On Fri, Sep 4, 2015 at 1:31 AM, Luca Menegotto wrote: > Il 03/09/2015 16:32, Heli Nix ha scritto: > >> How can I do this in Linux ? > > > As far as I know, in general a Linux distro comes with Python already > installed. > All you have to do is check if the installed version matches your needs. >

Re: Porting Python Application to a new linux machine

2015-09-03 Thread Luca Menegotto
Il 03/09/2015 16:32, Heli Nix ha scritto: How can I do this in Linux ? As far as I know, in general a Linux distro comes with Python already installed. All you have to do is check if the installed version matches your needs. Tipically, you'll find Python 2.7; however, I know there are distro

Re: Porting Python Application to a new linux machine

2015-09-03 Thread Joel Goldstick
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 > machine and so my program gets access to this local python a

Porting Python Application to a new linux machine

2015-09-03 Thread Heli Nix
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 wan