このコマンドをpip
使用してインストールしようとすると、次のように応答します。apt
sudo apt install python-pip
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package python-pip
これはpip3でも起こります。
┌──(aja㉿aja)-[~/Desktop/minecraft java]
└─$ sudo apt install python3-pip
[sudo] password for aja:
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Package python3-pip is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'python3-pip' has no installation candidate
私はCaliLinuxを使用しています。
どうすれば解決できますか?
答え1
python-pip
現在のバージョンの Debian またはカリ;Python 3バージョンをインストールできます。
sudo apt install python3-pip
答え2
pipやその他の必須項目をインストールできません
python3-pip
Kaliリポジトリにあります。構成が/etc/apt/sources.list
正しくありません。
次のコマンドを使用します。
echo "deb http://http.kali.org/kali kali-rolling main non-free contrib" | sudo tee /etc/apt/sources.list
sudo apt update
sudo apt upgrade
sudo apt install python3-pip