How to make a Run Configuration that runs current file in PyCharm?(如何在 PyCharm 中创建运行当前文件的运行配置?)
问题描述
现在,每次我启动一个新的 Python 文件时,我都必须在 PyCharm 中进行新的运行配置才能运行它.有没有办法让默认配置只运行您正在查看的任何文件?还是我只需要为每个文件创建一个新配置?
Right now, every time I start a new Python file, I have to make a new run configuration in PyCharm in order to run it. Is there a way to have a default configuration that just runs whatever file you are looking at? Or do I just have to make a new config for each file?
推荐答案
在打开模块的编辑器中直接右键单击或按Ctrl + Shift +F10,见在没有任何先前配置的情况下运行.
Simply right-click or press Ctrl + Shift +F10 inside the editor with the module open, see Run without any previous configuring.
IDE 将为您创建一个临时运行配置,该配置使用 File
>
Settings
>
项目
>
Python解释器
,见在项目设置中更改 Python 解释器.
The IDE will create a temporary run configuration for you that uses the project set in File
>
Settings
>
Project
>
Python Interpreter
, see Changing the Python interpreter in the project settings.
这篇关于如何在 PyCharm 中创建运行当前文件的运行配置?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 PyCharm 中创建运行当前文件的运行配置?
基础教程推荐
- 筛选NumPy数组 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01