命令行界面
最后修改时间:2023 年 11 月 14 日从命令行使用PyCharm功能:打开文件和项目、查看差异、合并文件、应用代码样式、清理以及检查源代码。
提示
有关来自 PyCharm 内部运行命令行工具的更多信息,请参阅终端仿真器。
独立实例的启动器
安装目录包含用于启动PyCharm、删除源代码和检查的批处理脚本和运行文件。要从命令提示符cmd.exe使用它们,满足PyCharmbin文件夹的位置添加到环境变量中PATH
。例如,如果您将PyCharm安装到C:\Program Files\JetBrains\PyCharm,则可以使用以下命令:
>PATH=%PATH%;C:\Program Files\JetBrains\PyCharm\bin
此命令仅更改PATH
当前shell(cmd.exe的当前实例)的环境变量。如果您想为当前用户永久更新它,请运行setx
:
>setx PATH“%PATH%;C:\Program Files\JetBrains\PyCharm\bin”
要在系统范围内为所有用户更新它,请运行setx /M
而不是setx
。
提示
如果您在安装以下的安装选项步骤中选择将启动器目录添加到路径,安装程序就可以为您执行此操作。
配置PATH
变量后,您可以从命令符中的任何工作目录提示运行执行文件:
>pycharm64.exe
或者,您可以使用批处理脚本:
>pycharm.bat
要从 shell 运行 PyCharm,请使用open
带以下选项的命令:
-a
指定应用程序。
-n
打开程序的新实例,即使该应用实例已经在运行。
--args
指定要交付给应用程序的其他参数。
例如,您可以使用以下命令运行PyCharm.app :
$打开-na“PyCharm.app”
笔记
如果 PyCharm 不在默认/Applications目录中,请指定其完整路径。
您可以使用此命令在环境变量的目录中创建 shell 脚本PATH
。例如,使用以下内容创建文件/usr/local/bin/pycharm :
#!/bin/sh open -na "PyCharm.app" --args "$@"
确保您能够执行该脚本,并且由于默认情况下/usr/local/bin应位于PATH
环境变量中,因此您能够pycharm
从 shell 中的任何位置运行。
如果您没有执行该脚本的权限,请运行以下命令:
$chmod +x /usr/local/bin/idea
在 Linux 上,安装目录包含bin下的启动器 shell 脚本pycharm.sh。例如,如果您将 PyCharm 安装到/opt /pycharm,则可以使用以下命令运行该脚本:
$/opt/pycharm/bin/pycharm.sh
您可以从环境变量的目录中创建指向启动器脚本的符号链接PATH
。例如,如果要在/usr /local /bin中创建名为pycharm的链接,请运行以下命令:
$ln -s /opt/pycharm/bin/pycharm.sh /usr/local/bin/pycharm
由于默认情况下/usr /local /bin应位于环境变量中,因此您应该能够从 shell 中的任何位置运行该命令。PATH
pycharm
如果您将 PyCharm 作为 snap 包安装,则可以使用相应的启动器: pycharm-professional
或pycharm-community
。
Toolbox 应用程序生成的 Shell 脚本
如果您使用Toolbox 应用程序安装和管理 JetBrains 产品,则可以使用 shell 脚本从命令行启动 IDE。
Toolbox App 自动生成 shell 脚本并将其放置到以下文件夹中:
%LOCALAPPDATA%\JetBrains\Toolbox\scripts
默认情况下,Toolbox 应用程序将 shell 脚本放置在系统环境变量的目录中PATH
,因此您可以将脚本的名称作为命令运行,以从任何工作目录启动 PyCharm。
更改 shell 脚本位置
打开 Toolbox 应用程序,单击右上角的Toolbox 应用程序菜单图标,然后选择设置。
在“设置”选项卡上,展开“工具”部分,然后在“Shell 脚本位置”字段中指定另一个文件夹。
重命名 shell 脚本
如果您有同一 IDE 的多个版本,Toolbox 应用程序会为每个版本生成一个具有唯一名称的 shell 脚本。您可以在特定实例的设置中更改 IDE 实例的 shell 脚本的名称。
打开工具箱应用程序。
单击IDE 实例旁边的 并选择“设置”。
在“配置”部分的底部,更改Shell 脚本名称字段。
/usr/local/bin
或者
~/Library/Application Support/JetBrains/Toolbox/scripts
By default, the Toolbox App puts shell scripts in a directory from the system PATH
environment variable, so you can run the name of the script as a command to launch PyCharm from any working directory.
更改 shell 脚本位置
Open the Toolbox App, click the Toolbox App menu icon in the top right corner, and select Settings.
On the Settings tab, expand the Tools section, and specify another folder in the Shell scripts location field.
重命名 shell 脚本
If you have several versions of the same IDE, the Toolbox App generates a shell script for each version with a unique name. You can change the name of the shell script for an IDE instance in the settings for this specific instance.
Open the Toolbox App.
Click next to an IDE instance and select Settings.
At the bottom of the Configuration section, change the Shell script name field.
~/.local/share/JetBrains/Toolbox/scripts
By default, the Toolbox App puts shell scripts in a directory from the system PATH
environment variable, so you can run the name of the script as a command to launch PyCharm from any working directory.
更改 shell 脚本位置
Open the Toolbox App, click the Toolbox App menu icon in the top right corner, and select Settings.
On the Settings tab, expand the Tools section, and specify another folder in the Shell scripts location field.
重命名 shell 脚本
If you have several versions of the same IDE, the Toolbox App generates a shell script for each version with a unique name. You can change the name of the shell script for an IDE instance in the settings for this specific instance.
Open the Toolbox App.
Click next to an IDE instance and select Settings.
At the bottom of the Configuration section, change the Shell script name field.
命令行参数
启动器脚本接受命令、选项和其他参数来修改其行为。如果没有任何参数,脚本将启动 PyCharm。如果指定文件或目录的路径,PyCharm 将打开指定的文件或目录。有关详细信息,请参阅从命令行打开文件。
命令
diff
打开 diff 查看器以查看两个指定文件之间的差异。
有关详细信息,请参阅从命令行比较文件。
merge
打开“合并”对话框以合并指定的文件。
有关详细信息,请参阅从命令行合并文件。
format
将代码样式格式应用于指定文件。
有关详细信息,请参阅从命令行格式化文件。
inspect
对指定项目进行代码检查。
有关更多信息,请参阅从命令行运行代码检查。
选项
nosplash
加载 PyCharm 时不显示启动屏幕。
dontReopenProjects
不要重新打开项目并显示欢迎屏幕。如果打开的项目导致 PyCharm 崩溃,这会有所帮助。
disableNonBundledPlugins
不要加载手动安装的插件。如果您安装的插件导致 PyCharm 崩溃,这会有所帮助。您将能够启动 IDE 并禁用或卸载有问题的插件。
--wait
等待文件关闭,然后返回命令提示符。
例如,您可以使用以下命令打开file.txt :
pycharm64.exe --wait file.txt
shell 将等待,直到file.txt关闭。
感谢您的反馈意见!