Pip install error. Setuptools.command not found

后端 未结 4 881
野的像风
野的像风 2021-01-07 21:38

I\'m using a clean instance of Ubuntu server and would like to install some python packages in my virtualenv.

I receive the following output from the command \'pip i

4条回答
  •  遥遥无期
    2021-01-07 22:11

    These instructions solved the problem for me:

    first enter these commands

        pip install --upgrade pip
        pip install --upgrade wheel
        pip install setuptools
    

    and then try to install the package that requires setuptools.

提交回复
热议问题