Detailed setuptools Pip installation tutorials in Python3

  • 2021-06-28 13:27:05
  • OfStack

1. Install setuptools

The commands are as follows:


wget --no-check-certificate https://pypi.python.org/packages/source/s/setuptools/setuptools-19.6.tar.gz#md5=c607dd118eae682c44ed146367a17e26
tar -zxvf setuptools-19.6.tar.gz
cd setuptools-19.6
python3 setup.py build
python3 setup.py install

Note: If for some reason setuptools cannot download, you can right click on the link to download, then go to the download location to do the next few steps.

2. Install pip

The commands are as follows:


wget --no-check-certificate https://pypi.python.org/packages/source/p/pip/pip-8.0.2.tar.gz#md5=3a73c4188f8dbad6a1e6f6d44d117eeb
tar -zxvf pip-8.0.2.tar.gz
cd pip-8.0.2
python3 setup.py build
python3 setup.py install

Note: If for some reason setuptools cannot download, you can right click on the link to download, then go to the download location to do the next few steps.

summary

The above is the setuptools, Pip installation tutorial in Python3 introduced to you by this site. I hope it will be helpful to you. If you have any questions, please leave a message for me. This site will reply to you in time!


Related articles: