如何解决“Fatal error in launcher: Unable to create process using c:\users\...”错误

在使用Python的pip3命令安装依赖包时,报了“Fatal error in launcher: Unable to create process using c:\users…”错误,如下图所示:
如何解决“Fatal error in launcher: Unable to create process using c:\users\...”错误_第1张图片
错误分析:
原因是把安装好的python复制到其它电脑的不同位置造成的。
处理方式:
删除Scripts目录,
如何解决“Fatal error in launcher: Unable to create process using c:\users\...”错误_第2张图片

同时删除Lib/sit-packages/pip-23.1.2.dist-info目录
如何解决“Fatal error in launcher: Unable to create process using c:\users\...”错误_第3张图片
在python目录下,建立配置一个pip.ini国内镜像文件
pip.ini文件

[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com

安装pip

python -m pip install --upgrade pip

python -m pip install --upgrade pip -i http://mirrors.aliyun.com/pypi/simple/

如何解决“Fatal error in launcher: Unable to create process using c:\users\...”错误_第4张图片

如何解决“Fatal error in launcher: Unable to create process using c:\users\...”错误_第5张图片
查看系统环境变量配置path配置
如何解决“Fatal error in launcher: Unable to create process using c:\users\...”错误_第6张图片

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