PIP installation for Python3 problem: Consider adding this directory to PATH

49,168

You are getting this error because of the absence of the location that pip is installed from your PATH.

You need add:

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

to the end of your .bash_profile, like @hoefling commented.

Share:
49,168
Admin
Author by

Admin

Updated on October 20, 2021

Comments

  • Admin
    Admin over 2 years

    I tried to install pip in python $ python get-pip.py through terminal but had this warning in Terminal.

    Python3.8
    MacOS Catalina

    Please help :( . I have been trying to search for answers for days

    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.