pip3
を使用しようとすると、次のようになります。
$ pip3 --version
Command 'pip3' not found, but can be installed with:
Sudo apt install python3-pip
だから私は走る:
$ Sudo apt install python3-pip
Reading package lists... Done
Building dependency tree
Reading state information... Done
python3-pip is already the newest version (9.0.1-2.3~ubuntu1).
0 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.
次に:
$ pip3 --version
Command 'pip3' not found, but can be installed with:
Sudo apt install python3-pip
指示は間違っていますか?
このソリューションの指示に従って apt-getを使用してpip3を正しくインストールできない に修正しました:
を使用してpip3をアンインストールします
Sudo apt-get remove python3-pip
ディレクトリを削除する
$HOME/.local/lib/python3.6/site-packages # (python3.6 instead of 3.5)
Apt-getを使用してpip3を再インストールします
Sudo apt-get install python3-pip