python3.2.2 install setuptools and pip

The latest versions of setuptools and pip do not support python3.4 or lower. I have searched the version history in PyPi for a long time, and tried several times to find two versions that support python3.2.2.

1.setuptools 20.0   https://download.csdn.net/download/lblmlms/12740094

2.pip 7.1.2   https://download.csdn.net/download/lblmlms/12740097

Setuptools installation steps:

  1. Unzip the compressed package
  2. Open the command window and enter the unzipped folder (I use the git command window here)
  3. Type python setup.py install
  4. After the installation is successful, open a new command window, enter easy_install and press Enter to check

    If it prompts: 
    error: No urls, filenames, or requirements specified (see -help), the 
    installation is successful, and it prompts you to follow the command with parameters. 
    If prompted: 
    'easy_install' is not an internal or external command, nor an executable program 
    or batch file. 
    Please check whether the environment variable path is configured with "C:\Python32\Scripts"

 

Setuptools installation steps:

  1. Unzip the compressed package
  2. Open a command window and enter the unzipped folder
  3. Type python setup.py install
  4. After the installation is successful, you can open a new command window, enter pip and press Enter to check

    If prompted: 
    Usage:
      pip <command> [options] followed by a series of command descriptions, indicating that the installation was successful

         If prompted: pip' is not an internal or external command, nor an executable program or batch file. 

         Please check whether the environment variable path is configured with "C:\Python32\Scripts"

 

Guess you like

Origin blog.csdn.net/lblmlms/article/details/108177425