启动一个项目对于新手都是不容易的事情
在哪
对于Windows平台,打开cmd
使用命令py -0p
【其中0是零】
显示已安装的 python 版本且带路径的列表
切换python3命令
在Windows下,可以使用cmd下使用mklink命令创建“软链接”更好一些。
例如:mklink c:\python\python3.exe c:\python\python.exe
这是因为,在安装Python后都会默认将安装目录添加到Path搜索路径中,所以即使升级了Python后续操作无需任何调整或修改
pip切换源
pip install pip -U
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
pip config set install.trusted-host https://pypi.tuna.tsinghua.edu.cn
换源后超级快
错误
1.RuntimeError: 缺少FastAPI框架依赖,需要安装后调用
缺少依赖,安装即可
2.ValueError: invalid literal for int() with base 10: ‘’
结果,配置文件没有填写对应的key的value
3.pip._vendor.requests.exceptions.ReadTimeout: HTTPSConnectionPool(host=‘pypi.org’, port=443): Read timed out. (read timeout=15)
继续换源
4.pip_search : 无法将“pip_search”项识别为 cmdlet、函数、脚本文件或可运行程序的名称。请检查名称的拼写,如果包括路径,请确保路径正确,然后再试一次。
所在位置 行:1 字符: 1
安装插件
pip install pip-search