Command-line interface
Use PyCharm features from the command line: open files and projects, view diffs, merge files, apply code style formatting, and inspect the source code.
Launcher for a standalone instance
The installation directory contains batch scripts and executables for launching PyCharm, formatting the source code, and running inspections. To use them from the Command Prompt cmd.exe, add the location of the PyCharm bin folder to the PATH
environment variable. For example, if you installed PyCharm to C:\Program Files\JetBrains\PyCharm, you can use the following command:
This command changes the PATH
environment variable for the current shell only (the current instance of cmd.exe). If you want to update it permanently for the current user, run setx
. To update it system-wide for all users, run setx /M
.
After you configure the PATH
variable, you can run pycharm.bat
from any working directory in the Command Prompt. Depending on the arguments that you pass to the script, it can do the following:
Argument | Description |
---|---|
No argument | Launch PyCharm. |
Path to file or directory | Open the file or directory specified as the argument. |
diff | Open the diff viewer to see differences between two files specified as arguments. |
merge | Open the Merge dialog to merge files specified as arguments. |
format | Apply code style formatting to the specified files. |
inspect | Perform code inspection on the specified project. |
To run PyCharm from the shell, use the open
command with the following options:
-a
: Specifies the application--args
: Specifies additional arguments when passing more than just the file or directory to open-n
: Open a new instance of the application even if one is already running
For example, if the application is named PyCharm.app, you can run it using the following command:
You can create a shell script with this command in a directory from your PATH
environment variable. For example, create the file /usr/local/bin/idea with the following contents:
Make sure you have permissions to execute the script and since /usr/local/bin should be in the PATH
environment variable by default, you should be able to run pycharm
from anywhere in the shell. Depending on the arguments that you pass to the launcher, it can do the following:
Argument | Description |
---|---|
No argument | Launch PyCharm. |
Path to file or directory | Open the file or directory specified as the argument. |
diff | Open the diff viewer to see differences between two files specified as arguments. |
merge | Open the Merge dialog to merge files specified as arguments. |
format | Apply code style formatting to the specified files. |
inspect | Perform code inspection on the specified project. |
On Linux, the installation directory contains the launcher shell script pycharm.sh under bin. For example, if you installed PyCharm to /opt/pycharm, you can run the script using the following command:
You can create a symbolic link to the launcher script in a directory from the PATH
environment variable. For example, if you installed PyCharm to /opt/pycharm and want to create a link named idea in /usr/local/bin, run the following command:
Since /usr/local/bin should be in the PATH
environment variable by default, you should be able to run the pycharm
command from anywhere in the shell. Depending on the arguments that you pass to the script, it can do the following:
Argument | Description |
---|---|
No argument | Launch PyCharm. |
Path to file or directory | Open the file or directory specified as the argument. |
diff | Open the diff viewer to see differences between two files specified as arguments. |
merge | Open the Merge dialog to merge files specified as arguments. |
format | Apply code style formatting to the specified files. |
inspect | Perform code inspection on the specified project. |
Shell scripts generated by the Toolbox App
If you are using the Toolbox App to install and manage JetBrains products, it can create shell scripts for launching your IDEs from the command line.
Generate shell scripts
Open the Toolbox App and click the screw nut icon in the top right corner.
In the Toolbox App Settings, enable Generate shell scripts.
If necessary, change the shell scripts location.

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 the screw nut icon next to the relevant IDE instance and select Settings.
At the bottom, change the Shell script name field.

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.