Python3.6安装后Scripts目录为空解决方案

Python安装后如果Scripts目录为空,没有我们想要的easy_install。那么我们怎么安装pip呢?

1、python -m pip install --upgrade pip --force-reinstall

如果提示以下问题

You are using pip version 9.0.1, however version 18.0 is available. You should consider upgrading via the 'python -m pip install --upgrade pip' comm and...

 

可使用:

2、pip install --upgrade pip

你可能感兴趣的:(Python3.6安装后Scripts目录为空解决方案)