Skip to content

Commit b385c50

Browse files
authored
Merge pull request animator#119 from adarsh1001111/matplotlib_installation
Added matplotlib_installation.md file and updated the index.md
2 parents 2e2515b + 8f5ceba commit b385c50

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-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: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
```
26+
27+
Output:
28+
29+
```
30+
3.4.3
31+
```

0 commit comments

Comments
 (0)