Skip to content

Added matplotlib_installation.md file and updated the index.md #119

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contrib/plotting-visualization/index.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# List of sections

- [Section title](filename.md)
- [Installing Matplotlib](matplotlib_installation.md)
31 changes: 31 additions & 0 deletions contrib/plotting-visualization/matplotlib_installation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Matplotlib Installation

Matplotlib is a widely used Python library for creating static, animated, and interactive visualizations. It can be installed using `pip`, Python's package manager.

## Prerequisites

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/).

## Installation Steps

1. **Install Matplotlib**: Open your terminal or command prompt and run the following command to install Matplotlib using `pip`:

```bash
pip install matplotlib
```

2. **Verify Installation**: After installation, you can verify if Matplotlib is installed correctly by importing it in a Python environment:

```python
import matplotlib

print(matplotlib.__version__)


```

Output:

```
3.4.3
```