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


- YouTube API v3 返回截断的观看记录 2022-01-01
- 使用 Cython 将 Python 链接到共享库 2022-01-01
- 我如何透明地重定向一个Python导入? 2022-01-01
- CTR 中的 AES 如何用于 Python 和 PyCrypto? 2022-01-01
- 使用公司代理使Python3.x Slack(松弛客户端) 2022-01-01
- 检查具有纬度和经度的地理点是否在 shapefile 中 2022-01-01
- 我如何卸载 PyTorch? 2022-01-01
- 如何使用PYSPARK从Spark获得批次行 2022-01-01
- 计算测试数量的Python单元测试 2022-01-01
- ";find_element_by_name(';name';)";和&QOOT;FIND_ELEMENT(BY NAME,';NAME';)";之间有什么区别? 2022-01-01