The steps to run Matplotlib in Sublime Text are as follows: Install the Matplotlib package. Install the Matplotlib plugin. Create a new file with a .py extension. Import Matplotlib. Create a graph. Display graphics. Save and run the code.
How to run Matplotlib in Sublime Text
Running Matplotlib in Sublime Text requires the following steps:
1. Install the Matplotlib package
Install Matplotlib through the terminal or command prompt:
<code>pip install matplotlib</code>
2. Install the Matplotlib plug-in in Sublime Text
Open Package Control and search for the "Matplotlib" plug-in, then install it.
3. Create a new file
Create a new file in Sublime Text with the extension .py
.
4. Import Matplotlib
Import Matplotlib in the file:
<code class="python">import matplotlib.pyplot as plt</code>
5. Create a graph
Use Matplotlib functions to create graphics, for example:
<code class="python">plt.plot([1, 2, 3, 4], [5, 6, 7, 8])</code>
6. Display graphics
Call plt.show()
function to display graphics:
<code class="python">plt.show()</code>
7. Save and run the code
Save the file and save it with .py
extension. Then, open Sublime Text's debug console (Ctrl ), type
python file_name.py` and press Enter.
The above is the detailed content of How to run matplotlib in sublime. For more information, please follow other related articles on the PHP Chinese website!