Eigenes Python installieren: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
K (Python 3.9.6) |
(buildout raus) |
||
Zeile 11: | Zeile 11: | ||
== Installation == | == Installation == | ||
Ich installiere ein eigenes Python (hier Python 3.9) so: | |||
mkdir /home/pacs/xyz00/opt | mkdir /home/pacs/xyz00/opt | ||
mkdir /home/pacs/xyz00/build | mkdir /home/pacs/xyz00/build | ||
cd /home/pacs/xyz00/build | cd /home/pacs/xyz00/build | ||
wget https://www.python.org/ftp/python/3.9. | wget https://www.python.org/ftp/python/3.9.12/Python-3.9.12.tgz | ||
tar xzf Python-3.9. | tar xzf Python-3.9.12.tgz | ||
cd Python-3.9. | cd Python-3.9.12 | ||
./configure --enable-optimizations --prefix=/home/pacs/xyz00/opt | ./configure --enable-optimizations --prefix=/home/pacs/xyz00/opt | ||
make | make |
Version vom 25. März 2022, 12:03 Uhr
Eigenes Python installieren
Manchmal macht es Sinn eine eigene Python-Umgebung zu installieren. Gründe dafür können sein
- Unabhängigkeit vom System-Python
- Volle Kontrolle über eingesetzte Python-Packages
- Freie Auswahl der Python-Distribution (z. B. die neueste)
Ich empfehle Python mithilfe von buildout zu installieren. Im folgenden wird die Vorgehensweise erläutert.
Installation
Ich installiere ein eigenes Python (hier Python 3.9) so:
mkdir /home/pacs/xyz00/opt mkdir /home/pacs/xyz00/build cd /home/pacs/xyz00/build wget https://www.python.org/ftp/python/3.9.12/Python-3.9.12.tgz tar xzf Python-3.9.12.tgz cd Python-3.9.12 ./configure --enable-optimizations --prefix=/home/pacs/xyz00/opt make make install cd .. rm -rf build