Fatal error in launcher:解决

报错目录

  • Fatal error in launcher:
    • 1.安装第三方库时
      • 解决:
    • 2.创建项目时
      • 解决:
    • 永久性解决:建议重新安装个稳定版本的python


Fatal error in launcher:

1.安装第三方库时

输入:pip3 install django -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
报错:Fatal error in launcher:
在这里插入图片描述

解决:

python -m pip install django -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
点击下方一键复制完整代码

python -m pip install django -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

分析:用到pip的东西,都在前面加python -m

2.创建项目时

输入:django-admin startproject myDjango
报错:Fatal error in launcher: Unable to create process using ‘“D:???\python37\python.exe” “D:???\python\python37\Scripts\django-admin.exe” startproject myDjango’: ???
在这里插入图片描述

解决:

python D:\three\python\python37\Lib\site-packages\django\bin_pycache_\django-admin.cpython-37.pyc startproject myDjango

改成你python安装包的位置

点击下方一键复制完整代码

 python D:\three\python\python37\Lib\site-packages\django\bin\__pycache__\django-admin.cpython-37.pyc startproject myDjango

分析:
文件名有中文,python对中文不敏感(容易报错)。 (改了不行)
帮cmd找到django位置
在这里插入图片描述

永久性解决:建议重新安装个稳定版本的python

python官网3.6下载链接
python官网3.7下载链接
下载时,选择添加到环境变量这个选项(有两个地方带PATH的都选上),这样就不存在这个问题了。

你可能感兴趣的:(python,报错,python,django,后端)