How to Install Python 3 in Centos7 Quickly

Download and install python3

sudo yum -y install python3

Using PIP Download

sudo python3 -m pip install numpy

Check the PIP list

sudo python3 -m pip list

Write the execute PY file

vim hello.py
sudo chmod 755 hello.py #Set permissions
./hello.py #Executing the py file

Read More: