使用 PyCharm,为什么运行 Django 项目时的 PYTHONPATH 与运行 manage.pysyncdb 任务时不同?
默认情况下不应该是一样的吗?如果没有,是否有某种方法可以解决此问题,以便使用相同的 PYTHONPATH?
Shouldn't it be the same by default? If not, is there some way to fix this so that the same PYTHONPATH is used?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能不是理想的解决方案,但它有效,而且是我老板的好意。
修改pycharm的django_manage.py,在顶部所有现有代码之前插入以下代码。 django_manage.py 可以在 [PyCharm 安装目录]/helpers/pycharm/django_manage.py 中找到。
This may not be the ideal solution, but it works, and comes courtesy of my boss.
Modify pycharm's django_manage.py, inserting the following code at the top, before all existing code. django_manage.py can be found at [PyCharm install directory]/helpers/pycharm/django_manage.py.
您是否在“设置”>“设置”中为您的项目选择了正确的 python 安装? Python解释器?
Did you select the right python install for your project in Settings > Python Interpreter?