@@ -24,14 +24,14 @@ To check if you have it installed, open your terminal and type:
2424git --version
2525```
2626
27- #### Git installation in mac
27+ #### Git installation in MacOS
2828
2929``` bash
3030brew update
3131brew install git
3232```
3333
34- #### Git installation in linux
34+ #### Git installation in Linux
3535
3636In Ubuntu/Debian
3737
@@ -76,11 +76,11 @@ If you don't have conda installed already and want to use conda for environment
7676- Run the following commands:
7777
7878``` bash
79- jupyter contrib nbextension install --user
80- jupyter nbextension enable varInspector/main
79+ python -m jupyter contrib nbextension install --user
80+ python -m jupyter nbextension enable varInspector/main
8181```
8282
83- - After the tutorial you can remove your environment with ` conda remove -n nn-tutorial --all `
83+ - ** After the tutorial** you can remove your environment with ` conda remove -n nn-tutorial --all `
8484
8585### Using venv only
8686
@@ -98,22 +98,20 @@ Then, install the packages with pip within the activated environment
9898
9999``` bash
100100python -m pip install -r requirements.txt
101- jupyter contrib nbextension install --user
102- jupyter nbextension enable varInspector/main
101+ python -m jupyter contrib nbextension install --user
102+ python -m jupyter nbextension enable varInspector/main
103103```
104104
105105Afterwards, you should be able to run the provided notebooks.
106106
107-
108-
109107## Running the tutorial
110108
111109After installing the package
112110
113- You can start the jupyterlab in the terminal, and it will start a browser automatically
111+ You can start the jupyter notebook in the terminal, and it will start a browser automatically
114112
115113``` bash
116- jupyter lab
114+ python -m jupyter notebook
117115```
118116
119117Alternatively, you can use supported Editor to run the jupyter notebooks, e.g. with VS Code.
0 commit comments