创建一个运行模块的 PyCharm 配置,例如“python

Create a PyCharm configuration that runs a module a la quot;python -m fooquot;(创建一个运行模块的 PyCharm 配置,例如“python -m foo.)

本文介绍了创建一个运行模块的 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

基础教程推荐