I am using CentOS. It has Python 3.6 version installed.
From command line if I try to execute PIP, I get error: “Command not found”
How to add Python folder to the environment path?
I am using CentOS. It has Python 3.6 version installed.
From command line if I try to execute PIP, I get error: “Command not found”
How to add Python folder to the environment path?
2
Answers
Apparently you should install pip separately in CentOS.
Try this Link.
Pip is not available in CentOS 7 core repositories. To install pip we need to enable the EPEL repository:
Once the EPEL repository is enabled we can install pip and all of its dependencies with the following command:
To verify that the pip is installed correctly run the following command which will print the pip version:
Enjoy! 🙂