错误描述
在我从python.3.12换成python.10后,再次下载pip包时出现Fatal error in launcher: Unable to create process using '"D:\pythom3.10\python.exe" "D:\python3.10\pip.exe" install xformers -i https://pypi.tuna.tsinghua.edu.cn/simple/ --trusted-host pypi.tuna.tsinghua.edu.cn': ???????????
解决方法
原因很简单,因为pip在换了python3.10后版本不匹配,需要更新一下pip版本就可以了。
用以下指令
python -m pip install -U pip
更新完成就可以正常下载了