Home > Article > Development Tools > How to run python with sublime
How to run Python in Sublime? Install the Python interpreter. Configure the Python interpreter in Sublime. Run Python code by using the Build system panel (Ctrl/Cmd B). Press the shortcut key (Ctrl/Cmd Enter). Via the menu (Tools > Build Systems > Python).
How to run Python in Sublime
Sublime Text is a popular code editor with various built-in Features that support Python development, including a Python interpreter. Here's how to run Python code in Sublime:
Install the Python interpreter
First, make sure you have the Python interpreter installed on your system. You can download and install the latest version of Python from the official Python website.
Configuring Sublime
In Sublime, configure the Python interpreter by following these steps:
<code>{ "python_interpreter": "path/to/python" }</code>
Be sure to replace "path/to/python" with the actual path to the Python interpreter.
Running Python code
You can run Python code in Sublime in the following ways:
Method 1: Build System
Ctrl
B
(Windows) or Cmd
B
(Mac) to open the Build system panel. Method 2: Shortcut Keys
Ctrl
Enter
(Windows) or Cmd
Enter
(Mac). Method 3: Menu
After performing the above operations, Sublime will use the configured Python interpreter to run your code. The output will be displayed in Sublime's console.
The above is the detailed content of How to run python with sublime. For more information, please follow other related articles on the PHP Chinese website!