主要介绍Python3在日常使用中的一些Tips。
环境变量
PYTHON_HOME
%PYTHON_HOME%/scripts
pip 相关命令
依赖管理pip
安装依赖和写在依赖
pip install googletrans
pip uninstall googletrans
查看安装的依赖
pip list
pip freeze -r requirenment.txt #方便迁移环境
pip install -r requirenment.txt #一键安装所有依赖
pip 源
例:pip install googletrans -i https://pypi.tuna.tsinghua.edu.cn/simple
清华大学
https://pypi.tuna.tsinghua.edu.cn/simple
阿里云
http://mirrors.aliyun.com/pypi/simple/
腾讯云
https://mirrors.cloud.tencent.com/pypi/simple/
中国科技大学
https://mirrors.cloud.tencent.com/pypi/simple/
豆瓣
https://pypi.doubanio.com/simple/
浙江大学
https://mirrors.zju.edu.cn/pypi/web/simple/
第三方模块 virtualenv
pip install virtualenv
virtualenv venv
source venv/Scripts/activate
使用 vscode 调试python virtualenv
- 在 VS Code 选择 “查看 > 命令面板” 或按下 “Ctrl + Shift + P” 来打开命令面板
- 再选择 Python:Select Interpreter 来选择运行环境
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: 当前文件",
"type": "python",
"request": "launch",
"program": "tools/static_trainer.py",
"console": "integratedTerminal",
"args": [
"-m",
"models/demo/movie_recommand/recall/movie.yaml"
]
}
]
}
参考
转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 chgocn@gmail.com