ich habe das aktuelle Python3 aus der Source von python.org kompiliert und in /home/user/bin/python3 installiert.
Kann ich für diese Version einen env-Umgebung einrichten?
Mit
Code: Alles auswählen
python3 -m venv tutorial-env
Code: Alles auswählen
https://docs.python.org/3/tutorial/venv.html
Code: Alles auswählen
This will create the tutorial-env directory if it doesn’t exist, and also create directories inside it containing a copy of the Python interpreter, the standard library, and various supporting files.
Vielen Dank für Eure Tipps!
Rawit