Kontynuując dokumentowanie tego w najnowszych wersjach Ubuntu 1 : dla serwera Ubuntu 16.04.1 domyślnym językiem Python jest wersja 3.5, a Python 2.7 nie jest domyślnie instalowany. Przy nowej instalacji (pamiętaj, że nie ma nawet python
pliku wykonywalnego):
$ type python3 python2 python
python3 is /usr/bin/python3
-bash: type: python2: not found
-bash: type: python: not found
$ python3 --version
Python 3.5.2
$ python --version
The program 'python' can be found in the following packages:
* python-minimal
* python3
Try: sudo apt install <selected package>
Uwaga: Przed kontynuowaniem, prawdopodobnie będziesz chciał zrobić szybkie sudo apt-get update
, sudo apt-get upgrade
i sudo apt-get dist-upgrade
(proszę zrobić notatkę dokładnie co te polecenia są w rzeczywistości robi; Jestem zakładając nową instalację tutaj).
Instalacja Pythona 2.7 jest tak prosta jak:
$ sudo apt-get install python2.7
Początkowe wyniki instalacji Pythona 2.7 są następujące:
$ sudo apt-get install python2.7
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libpython2.7-minimal libpython2.7-stdlib python2.7-minimal
Suggested packages:
python2.7-doc binutils binfmt-support
The following NEW packages will be installed:
libpython2.7-minimal libpython2.7-stdlib python2.7 python2.7-minimal
0 upgraded, 4 newly installed, 0 to remove and 0 not upgraded.
Need to get 3,735 kB of archives.
After this operation, 15.8 MB of additional disk space will be used.
Do you want to continue? [Y/n] Y
...etc, etc...
Po zainstalowaniu Pythona 2.7
$ type python3 python2.7 python3.5 python2 python
python3 is /usr/bin/python3
python2.7 is /usr/bin/python2.7
python3.5 is /usr/bin/python3.5
bash: type: python2: not found
bash: type: python: not found
Ale wciąż istnieje problem, ponieważ nie można jeszcze zainstalować modułów PyPI za pośrednictwem pip
- np. Jeśli chcesz notebooka jupyter lub najnowszej wersji scipy lub numpy (itp.), Musisz zainstalować, pip
a następnie pip install
te i nadal przechodzić do apt-get
zainstalować wszelkie potrzebne zależności systemowe , takie jak graphviz lub podstawowe biblioteki systemowe.
$ type pip3 pip2 pip
bash: type: pip3: not found
bash: type: pip2: not found
bash: type: pip: not found
$ python3 -m pip --version
/usr/bin/python3: No module named pip
Tak więc instalowanie pipa jest tak proste, jak sudo apt-get install python-pip
:
$ sudo apt-cache search -n pip | egrep '^python[0-9]*-pip'
python-pip - alternative Python package installer
python-pip-whl - alternative Python package installer
python3-pip - alternative Python package installer - Python 3 version of the package
Będziesz potrzebował zarówno python-pip
dla Python 2.7, jak pip
i python3-pip
dla Python 3 pip
. Instalacja przez z apt-get
pewnością zainstaluje wymagane zależności; np. oto dane wyjściowe do instalacji pip2:
$ sudo apt-get install python-pip
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
binutils build-essential dpkg-dev fakeroot g++ g++-5 gcc gcc-5 libalgorithm-diff-perl
libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan2 libatomic1 libc-dev-bin libc6-dev
libcc1-0 libcilkrts5 libdpkg-perl libexpat1-dev libfakeroot libfile-fcntllock-perl libgcc-5-dev
libgomp1 libitm1 liblsan0 libmpx0 libpython-all-dev libpython-dev libpython-stdlib libpython2.7
libpython2.7-dev libquadmath0 libstdc++-5-dev libtsan0 libubsan0 linux-libc-dev make
manpages-dev python python-all python-all-dev python-dev python-minimal python-pip-whl
python-pkg-resources python-setuptools python-wheel python2.7-dev
Suggested packages:
binutils-doc debian-keyring g++-multilib g++-5-multilib gcc-5-doc libstdc++6-5-dbg gcc-multilib
autoconf automake libtool flex bison gdb gcc-doc gcc-5-multilib gcc-5-locales libgcc1-dbg
libgomp1-dbg libitm1-dbg libatomic1-dbg libasan2-dbg liblsan0-dbg libtsan0-dbg libubsan0-dbg
libcilkrts5-dbg libmpx0-dbg libquadmath0-dbg glibc-doc libstdc++-5-doc make-doc python-doc
python-tk python-setuptools-doc
The following NEW packages will be installed:
binutils build-essential dpkg-dev fakeroot g++ g++-5 gcc gcc-5 libalgorithm-diff-perl
libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan2 libatomic1 libc-dev-bin libc6-dev
libcc1-0 libcilkrts5 libdpkg-perl libexpat1-dev libfakeroot libfile-fcntllock-perl libgcc-5-dev
libgomp1 libitm1 liblsan0 libmpx0 libpython-all-dev libpython-dev libpython-stdlib libpython2.7
libpython2.7-dev libquadmath0 libstdc++-5-dev libtsan0 libubsan0 linux-libc-dev make
manpages-dev python python-all python-all-dev python-dev python-minimal python-pip
python-pip-whl python-pkg-resources python-setuptools python-wheel python2.7-dev
0 upgraded, 49 newly installed, 0 to remove and 0 not upgraded.
Need to get 61.1 MB of archives.
After this operation, 169 MB of additional disk space will be used.
Do you want to continue? [Y/n] Y
...etc...
W rezultacie dzieje się ciekawa rzecz: masz teraz „standard” (i PEP zalecane) python2
i python3
(które są tylko dowiązaniami symbolicznymi do Pythona 2.7 i Pythona 3.5):
$ type python3 python2 python python2.7 python3.5
python3 is /usr/bin/python3
python2 is /usr/bin/python2
python is /usr/bin/python
python2.7 is /usr/bin/python2.7
python3.5 is /usr/bin/python3.5
Będziesz także chciał sudo apt-get install python3-pip
; przed instalacją masz:
$ type pip pip2 pip3
pip is /usr/bin/pip
pip2 is /usr/bin/pip2
-bash: type: pip3: not found
$ python2 -m pip --version
pip 8.1.1 from /usr/lib/python2.7/dist-packages (python 2.7)
$ python3 -m pip --version
/usr/bin/python3: No module named pip
Po zainstalowaniu pip3
,
$ sudo apt-get install python3-pip
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libpython3-dev libpython3.5-dev python3-dev python3-setuptools python3-wheel python3.5-dev
Suggested packages:
python-setuptools-doc
The following NEW packages will be installed:
libpython3-dev libpython3.5-dev python3-dev python3-pip python3-setuptools python3-wheel python3.5-dev
0 upgraded, 7 newly installed, 0 to remove and 0 not upgraded.
Need to get 38.0 MB of archives.
After this operation, 55.2 MB of additional disk space will be used.
Do you want to continue? [Y/n]
...etc...
Powstałe wersje:
$ type python python2 python3 pip pip2 pip3
python is /usr/bin/python
python2 is hashed (/usr/bin/python2)
python3 is hashed (/usr/bin/python3)
pip is /usr/bin/pip
pip2 is /usr/bin/pip2
pip3 is /usr/bin/pip3
$ pip --version
pip 8.1.1 from /usr/lib/python2.7/dist-packages (python 2.7)
$ pip3 --version
pip 8.1.1 from /usr/lib/python3/dist-packages (python 3.5)
$ python2 -m pip --version
pip 8.1.1 from /usr/lib/python2.7/dist-packages (python 2.7)
$ python3 -m pip --version
pip 8.1.1 from /usr/lib/python3/dist-packages (python 3.5)
I ostatnia rzecz, zanim zaczniesz instalować wszystkie swoje ulubione moduły PyPI w Pythonie: prawdopodobnie będziesz musiał zaktualizować sam pip (zarówno pip2, jak i pip3 osobno; nie ma też znaczenia, czy pip
jest wywoływany przez python
pliki wykonywalne, czy pip
pliki wykonywalne, aktualne aktualizacje są przechowywane w /usr/lib
):
$ sudo -H python2 -m pip install --upgrade pip
...
$ sudo -H python3 -m pip install --upgrade pip
...
Możesz teraz uruchomić pip
wersję autonomiczną lub wersję w pakiecie python
(przez python -m pip {command}
).
[1] Podsumowanie historyczne: starsze Ubuntu miało tylko Python 2.6, a zatem wszystkie różne metody instalacji Python 2.7+. Później, po dodaniu Python 2.7 do publicznych repozytoriów, nadal mieliśmy takie samo wyzwanie, aby zainstalować najnowszy Python 2.7 z najnowszymi poprawkami, co było (zbyt) często konieczne. Dzisiejsza sytuacja jest znacznie lepsza / prostsza: obecne Python 2.7 i 3.5 (w zasadzie tylko dwie wersje platformy Python, na których zależy ludziom), które są teraz w publicznych repozytoriach, są bardzo stabilne, więc teraz naprawdę musimy się martwić o instalację najnowszej moduły python , a nie najnowszy python . Więc teraz problem „najnowszej wersji” Pythona częściowo wyszedł z repozytoriów systemów operacyjnych apt
i do PyPI i pip
.)
sudo apt-get install python-2.7 python-pip