CentOS Install Python 3 PIP
Hi! The Tutorial shows you Step-by-Step How to Install Python 3.x PIP and Setuptools with easy_install on CentOS 6.x/7.x/8.x/8-Stream/9-Stream GNU/Linux.
And the Python 3 PIP for CentOS is the Python Package Manager used to Install and Manage Software Packages written in Python 2/3.
Especially Relevant: to Work with Python for Science, Engeneering and Data Analisys is Now Preferred instead to Install PIP with Anaconda Python!
-
Open a Shell Terminal emulator window
(Press “Enter” to Execute Commands)In case first see: Terminal QuickStart Guide.
-
Installing Python 3.x Pip Package.
-
Download the get-pip.py Pip Script Installer
Just Right-Click on Link > Save As get-pip.py.
-
Installing Python Pip.
cd ~/Downloads
To give Execution permission:
chmod +x get-pip.py
If Got “User is Not in Sudoers file” then see: How to Enable sudo
su -c "python3 get-pip.py"
-
-
Then to Install Python 3 Setuptools
pip3 install -U setuptools
If ‘permission denied’ issue then use sudo!