python基础命令

1. 国内源

清华:pypi | 镜像站使用帮助 | 清华大学开源软件镜像站 | Tsinghua Open Source Mirrorpypi 使用帮助 | 镜像站使用帮助 | 清华大学开源软件镜像站,致力于为国内和校内用户提供高质量的开源软件镜像、Linux 镜像源服务,帮助用户更方便地获取开源软件。本镜像站由清华大学 TUNA 协会负责运行维护。icon-default.png?t=N7T8https://mirrors.tuna.tsinghua.edu.cn/help/pypi/

阿里云:Simple Indexicon-default.png?t=N7T8https://mirrors.aliyun.com/pypi/simple/

# 清华的源
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package

 

# 阿里
pip install -i https://mirrors.aliyun.com/pypi/simple some-package

 

# 科大的
pip install -i http://pypi.mirrors.ustc.edu.cn/simple/ xxx

 


pip search -i http://xxx name

 

python -m venv xxx # 经测试,会在当前路径下穿件文件夹

 

你可能感兴趣的:(python,开发语言)