Commit 8b717650 authored by Hector Martinez-Seara Monne's avatar Hector Martinez-Seara Monne 🤖
Browse files

README.md: Improved installation instructions

parent cba1d789
Loading
Loading
Loading
Loading
+15 −9
Original line number Original line Diff line number Diff line
@@ -7,18 +7,24 @@ This course is based in a jupyer notebook. We will use its newest flavour named
- Bring your own laptop. The course should work with any laptop with either linux, MacOSX or Windows.
- 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)
- [anaconda](https://www.anaconda.com/products/individual#Downloads)
- Course environment
- Course environment

  - Install an enviroment for the course:
  - Create the environmet for the course:
    ```
    ```
    conda create --name py38 jupyterlab python=3.8 numpy matplotlib scipy pandas
    conda create --name py38-course python=3.8 jupyterlab numpy nodejs matplotlib scipy pandas
    ```
    ```
  - Activate the environment
  - Activate the environment
    ```
    ```
    conda activate py38
    conda activate py38
    ```
    ```
  - Configure jupyter lab
    - [Table of contents](https://github.com/jupyterlab/jupyterlab-toc)
     ```
     jupyter labextension install @jupyterlab/toc
     ```
    - [Variable inspector](https://github.com/lckr/jupyterlab-variableInspector)
      ``` 
      jupyter labextension install @lckr/jupyterlab_variableinspector
       ```
    - Deactivate the active environment
    - Deactivate the active environment
      ```
      ```
      conda deactivate
      conda deactivate
      ```
      ```
 No newline at end of file