web-dev-qa-db-fra.com

Installation PIP pour Python3 Problème: envisagez d'ajouter ce répertoire au chemin

J'ai essayé d'installer PIP dans Python$ python get-pip.py à travers le terminal mais avait cet avertissement dans le terminal.

Python3.8
[.____] Macos Catalina

S'il vous plaît aider :(. J'ai essayé de chercher des réponses pendant des jours

WARNING: The scripts pip, pip3 and pip3.8 are installed in '/Library/Frameworks/Python.framework/Versions/3.8/bin' which is not on PATH.
  Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
12
anhiqkao

Vous obtenez cette erreur en raison de l'absence de l'emplacement que PIP est installé à partir de votre chemin.

Vous avez besoin d'ajouter:

export PATH="$PATH:/Library/Frameworks/Python.framework/Versions/3.8/bin"

à la fin de votre .bash_profile, comme @ thoefling a commenté.

1
gsamaras