Getting An Error Installing Pip In My Mac
I am trying to install PIP package management system in my Mac but I am getting an error. When I am writing a cod sudo easy_install pip, it is giving me following error: Searchi
Solution 1:
The easy solution is download and install the latest version of Python 3. Just grab the dmg from the website https://www.python.org/downloads/release/python-370/ Verify it was installed.
$ python3 --version
Python 3.7.0
Pip is automatically included in this version so update it. Note use pip3 for Python 3.x
$ pip3 install --upgrade pip
Successfully uninstalled pip-10.0.1
Successfully installed pip-18.0
Solution 2:
This worked for me:
Make sure you installed python
$ python3 --version
Then install pip
$ python3 -m pip install --user--upgrade pip
$ python3 -m pip --version
for more check here:
https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/
Post a Comment for "Getting An Error Installing Pip In My Mac"