Skip to content

Latest commit

 

History

History
50 lines (36 loc) · 1.52 KB

README.md

File metadata and controls

50 lines (36 loc) · 1.52 KB

Python NumPy Tutorials

Welcome to the Python NumPy Tutorials repository! This repository contains a collection of tutorials to help you master the NumPy library, a fundamental package for scientific computing and data manipulation in Python.

Repository Structure

  • src/: Contains the Jupyter Notebook files with the tutorials.
  • NumPy_Tutorial.html: An exported HTML version of the notebook for a quick review.

Getting Started

To get started with the tutorials, follow these steps:

  1. Clone the repository:

    git clone https://github.com/Faridghr/Python-Numpy-Tutorial.git
    cd Python-Numpy-Tutorial
  2. Set up the environment:

    • It's recommended to use a virtual environment to manage dependencies. You can create one using venv or conda.

    Using venv:

    python -m venv venv
    source venv/bin/activate   # On Windows use `venv\Scripts\activate`

    Using conda:

    conda create --name Python-Numpy-Tutorial python=3.9
    conda activate Python-Numpy-Tutorial
  3. Install dependencies:

    pip install -r requirements.txt
  4. Run the Jupyter Notebook:

    jupyter notebook src/

Contributing

Contributions are welcome! If you have suggestions for improvements or new tutorials, feel free to open an issue or submit a pull request.

License

This project is licensed under the MIT License. See the LICENSE file for details.