-
前提
- 未使用anaconda管理python版本
- 分别装了Python2.7以及Python3.6
- 已经分别添加 D:\python2.7, D:\python2.7\Scripts , D:\python3.6 , D:\python3.6\Scripts 到path环境变量
-
Python2和Python3共存问题
- 进入D:\python3.6目录下,将python.exe, pythonw.exe 改为 python3.exe, pythonw3.exe
- 进入D:\python3.6\Scripts目录下,删除pip.exe
这样操作之后,在cmd中输入 python 即会使用 python2.7,输入 python3 即会使用 python3.6
但是,pip和pip3好像还没有分出来
接下来就解决这个问题
-
pip和pip3共存的问题
我们在上边已经删除了python3.6里的pip运行程序,所以这里只需要再下载一下就行了
在cmd中运行
python3 -m pip install --upgrade pip --force-reinstall
注意是 python3
下面再试一下
大功告成