在下python入门选手,碰到了N多不同的情况,感谢各位大佬的idea大多解决了,这个blog只为了自己留存。
1.python 配置:
python3.7+vscode
可惜安装的过程没有总结 后补
2.python的更新:
windows+R打开,用cmd进入代码界面,直接输入以下代码:
Python -m pip install --upgrade pip
3. python安装包:
pip install yacs
如果想用镜像源,可以:
pip install -i https://mirrors.aliyun.com/pypi/simple yacs
想设置默认的镜像源,可以打开文件夹:C:\Users\XXX\pip (XXX以自己的用户名),新建一个文本文档里写入:
[global] index-url = http://pypi.douban.com/simple trusted-host = pypi.douban.com disable-pip-version-check = true timeout = 12000 [list] format = columns
其中timeout非必须,我以豆瓣的镜像源为例,如果清华可以:
index-url = https://pypi.tuna.tsinghua.edu.cn/simple trusted-host = pypi.tuna.tsinghua.edu.cn
阿里云可以:
index-url = http://mirrors.aliyun.com/pypi/simple # 指定下载源 trusted-host = http://mirrors.aliyun.com # 指定域名
待续