Re: Distributing program for Linux

2023-03-15 Thread Loris Bennett
Anssi Saari writes: > "Loris Bennett" writes: > >> I am aware that an individual user could use (mini)conda to install a >> more recent version of Python in his/her home directory, but I am >> interested in how root would install such a program. > > Root would install the script and required

Re: Distributing program for Linux

2023-03-15 Thread Loris Bennett
ight thing. Cheers, Loris > From: Python-list > on behalf of Loris Bennett > Date: Tuesday, March 14, 2023 at 12:27 PM > To: python-list@python.org > Subject: Distributing program for Linux > *** Attention: This is an external email. Use caution responding, opening > attac

Re: Distributing program for Linux

2023-03-15 Thread Anssi Saari
"Loris Bennett" writes: > I am aware that an individual user could use (mini)conda to install a > more recent version of Python in his/her home directory, but I am > interested in how root would install such a program. Root would install the script and required Python version somewhere

Re: Distributing program for Linux

2023-03-14 Thread Weatherby,Gerard
, (e.g. python3.10). A typical shebang line would be: #!/usr/bin/env python3.10 From: Python-list on behalf of Loris Bennett Date: Tuesday, March 14, 2023 at 12:27 PM To: python-list@python.org Subject: Distributing program for Linux *** Attention: This is an external email. Use caution

Re: Distributing program for Linux

2023-03-14 Thread Simon Ward
On Tue, Mar 14, 2023 at 04:43:14PM +0100, Loris Bennett wrote: If I write a system program which has Python >= 3.y as a dependency, what are the options for someone whose Linux distribution provides Python 3.x, where x < y? The docs suggest creating your own package or building and installing

Distributing program for Linux

2023-03-14 Thread Loris Bennett
Hi, If I write a system program which has Python >= 3.y as a dependency, what are the options for someone whose Linux distribution provides Python 3.x, where x < y? I am aware that an individual user could use (mini)conda to install a more recent version of Python in his/her home directory, but