Commit 9225c655 authored by Hector Martinez-Seara Monne's avatar Hector Martinez-Seara Monne 🤖
Browse files

Update README.md

parent 4988fb7b
Loading
Loading
Loading
Loading
+22 −0
Original line number Diff line number Diff line
# python

This course is based in a jupyer notebook. We will use its newest flavour named jupyterlab.

# Prerequisites for the course:

- Bring your own laptop. The course should work with any laptop with either linux, MacOSX or Windows.
- [anaconda](https://www.anaconda.com/products/individual#Downloads)
- Course environment

  - Create the environmet for the course:
    ```
    conda create --name py38 jupyterlab python=3.8 numpy matplotlib scipy pandas
    ```
  - Activate the environment
    ```
    conda activate py38
    ```
  - Deactivate the active environment
    ```
    conda deactivate
    ```