方程208 2021-03-21 15:58 采纳率: 16.7%
浏览 65
已采纳

ubuntu部署django是测试启动项目时出现的问题

Traceback (most recent call last):
  File "manage.py", line 11, in main
    from django.core.management import execute_from_command_line
ModuleNotFoundError: No module named 'django'

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "manage.py", line 22, in <module>
    main()
  File "manage.py", line 17, in main
    ) from exc
ImportError: Couldn't import Django. Are you sure it's installed and available on your PYTHONPATH environment variable? Did you forget to activate a virtual environment?
 

  • 写回答

1条回答 默认 最新

  • 澈丹丶 2021-03-22 08:15
    关注

    环境问题,没有安装django。如果你的python环境配置的没有问题,可以直接pip install django。或者创建个virtualenv,在虚拟环境中安装django,这样可以保持base环境干净。

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?