如何在 PyCharm 中将多个目录编辑为一个项目?
我创建了一个 django 项目,按照 django 教程中的建议,我将 .js 等静态文件放置在单独的文件夹和模板目录中。
结果结构如下:
MyProject > scripts # place for .py files static # .js, .jpg etc templates
现在,当我在 PyCharm 中打开 MyProject 目录时,它希望所有以“scripts”开头的导入。就像from scripts.myapp.mymodule import MyFunc
一样。但它很丑。
是否可以将所有 3 个目录作为一个项目打开或告诉 PyCharm 源代码在哪里?
I created a django project and as it was recommended in django tutorial I placed static files like .js in separate folder as well as template directory.
The result structure is like:
MyProject > scripts # place for .py files static # .js, .jpg etc templates
Now when I open MyProject directory in PyCharm, it wants all imports starting with "scripts". Like from scripts.myapp.mymodule import MyFunc
. But it is ugly.
Is it possible to open all 3 directories as one project or tell PyCharm where the sources are?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
转到设置 |项目结构并将“scripts”目录标记为源根目录。
Go to Settings | Project Structure and mark the 'scripts' directory as a source root.