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
基础教程推荐
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
