Skip to content

Commit dae21c7

Browse files
committed
Added matplotlib_installation.md file and updated the index.md
1 parent 2e2515b commit dae21c7

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# List of sections
22

3-
- [Section title](filename.md)
3+
- [Installing Matplotlib](matplotlib_installation.md)
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Matplotlib Installation
2+
3+
Matplotlib is a widely used Python library for creating static, animated, and interactive visualizations. It can be installed using `pip`, Python's package manager.
4+
5+
## Prerequisites
6+
7+
Before installing Matplotlib, ensure you have Python installed on your system. You can download and install Python from the [official Python website](https://www.python.org/).
8+
9+
## Installation Steps
10+
11+
1. **Install Matplotlib**: Open your terminal or command prompt and run the following command to install Matplotlib using `pip`:
12+
13+
```bash
14+
pip install matplotlib
15+
```
16+
17+
2. **Verify Installation**: After installation, you can verify if Matplotlib is installed correctly by importing it in a Python environment:
18+
19+
```python
20+
import matplotlib
21+
22+
print(matplotlib.__version__)
23+
24+
25+
```

0 commit comments

Comments
 (0)