Avec Raspeye, vous pouvez installer pip avec ʻapt-get, mais je voulais installer pip avec macOS, donc je suis resté coincé là-bas, donc c'est un mémorandum. Je pensais que c'était un coup avec Homebrew, mais je ne peux pas l'installer avec
brew install pip`. [^ 1]
[^ 1]: * J'adore Home Brew.
Selon la Méthode officielle, la commande curl suivante téléchargera le fichier Python get-pip
.
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
Exécutez le fichier téléchargé get-pip.py
pour installer pip.
$ python3 get-pip.py
Appuyez sur la commande which pour afficher le chemin et l'installation elle-même est terminée.
$ which pip
/usr/local/bin/pip
Recommended Posts