Python教程

处理python安装问题的集锦

本文主要是介绍处理python安装问题的集锦,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

在下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 # 指定域名

待续

这篇关于处理python安装问题的集锦的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!