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 Pyt
versions to do the right 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,
"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
depending
, (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
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
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 I