Skip to content

Commit e46bce4

Browse files
authored
Update README.md
1 parent 6527e9e commit e46bce4

File tree

1 file changed

+51
-1
lines changed

1 file changed

+51
-1
lines changed

README.md

Lines changed: 51 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,51 @@
1-
# Python-Matplotlib-Tutorial
1+
# Python Matplotlib Tutorials
2+
Welcome to the Python Matplotlib Tutorials repository! This repository contains a collection of tutorials to help you master Matplotlib, a versatile library for creating static, animated, and interactive visualizations in Python.
3+
4+
## Repository Structure
5+
6+
- **src/**: Contains the Jupyter [Notebook files](/src/Numpy_Tutorial.ipynb) with the tutorials.
7+
- **dataset/**: Contains the datasets used in the tutorials.
8+
- **notebook.html**: An exported [HTML](Numpy_Tutorial.html) version of the notebook for a quick review.
9+
10+
## Getting Started
11+
12+
To get started with the tutorials, follow these steps:
13+
14+
1. **Clone the repository**:
15+
```bash
16+
git clone https://github.com/Faridghr/Python-Matplotlib-Tutorial.git
17+
cd Python-Matplotlib-Tutorial
18+
```
19+
20+
2. **Set up the environment**:
21+
- It's recommended to use a virtual environment to manage dependencies. You can create one using `venv` or `conda`.
22+
23+
Using `venv`:
24+
```bash
25+
python -m venv venv
26+
source venv/bin/activate # On Windows use `venv\Scripts\activate`
27+
```
28+
29+
Using `conda`:
30+
```bash
31+
conda create --name Python-Matplotlib-Tutorial python=3.9
32+
conda activate Python-Matplotlib-Tutorial
33+
```
34+
35+
3. **Install dependencies**:
36+
```bash
37+
pip install -r requirements.txt
38+
```
39+
40+
4. **Run the Jupyter Notebook**:
41+
```bash
42+
jupyter notebook src/
43+
```
44+
45+
## Contributing
46+
47+
Contributions are welcome! If you have suggestions for improvements or new tutorials, feel free to open an issue or submit a pull request.
48+
49+
## License
50+
51+
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.

0 commit comments

Comments
 (0)