Create a PyCharm configuration that runs a module a la quot;python -m fooquot;(创建一个运行模块的 PyCharm 配置,例如“python -m foo.)
问题描述
我的 python 入口点需要作为模块(而不是脚本)运行,如下所示:
My python entrypoint needs to be run as a module (not a script), as in:
python -m foo.bar
以下内容不起作用(并且不应该):
The following does not work (and is not supposed to):
python foo/bar.py
如何在 pycharm 中创建一个运行配置,使用上面的第一个调用来运行我的代码?
How can I create a run confirguration in pycharm that runs my code using the first invokation above?
推荐答案
在 2018.1 中终于可以在 UI 中指定模块名称而不是脚本路径.在输入字段的左侧有一个用于更改它的下拉菜单.
In 2018.1 it is finally possible to specify the module name instead of the script path in the UI. There is a dropdown for changing it, to the left of the input field.
这篇关于创建一个运行模块的 PyCharm 配置,例如“python -m foo".的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:创建一个运行模块的 PyCharm 配置,例如“python


基础教程推荐
- 修改列表中的数据帧不起作用 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 包装空间模型 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 求两个直方图的卷积 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01