windows命令行切换python版本
安装2.x 和 3.x 的python
我这里使用anaconda来安装两个版本的python包。
conda create --name python2 python=2.7 conda create --name python23 python=2.7
安装完之后,在你的anaconda程序目录下会发现:
设置系统环境变量
pip的使用
安装的时候,最好加上清华源,不然可以因为网络问题报错。
python2 -m pip install termcolor -i https://pypi.tuna.tsinghua.edu.cn/simple python3 -m pip install termcolor -i https://pypi.tuna.tsinghua.edu.cn/simple python2 -m pip list python3 -m pip list
参考
相关推荐
吹云 2020-11-05
84407805 2020-11-01
曾是土木人 2020-10-31
87201442 2020-10-15
java0 2020-09-29
81437716 2020-09-18
81437716 2020-09-13
bluecarrot 2020-09-11
myCat 2020-09-09
83427718 2020-09-07
85560694 2020-09-03
89520991 2020-08-21
89550191 2020-08-09
katie000 2020-08-04
hunningtu 2020-07-30
89961330 2020-07-28
yuzhongdelei0 2020-07-28
yuzhongdelei0 2020-07-27