Skip to content

Commit b0e372c

Browse files
committed
Update instructions in the notebook
1 parent 163de5c commit b0e372c

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

README.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ To check if you have it installed, open your terminal and type:
2424
git --version
2525
```
2626

27-
#### Git installation in mac
27+
#### Git installation in MacOS
2828

2929
``` bash
3030
brew update
3131
brew install git
3232
```
3333

34-
#### Git installation in linux
34+
#### Git installation in Linux
3535

3636
In 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
100100
python -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

105105
Afterwards, you should be able to run the provided notebooks.
106106

107-
108-
109107
## Running the tutorial
110108

111109
After 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

119117
Alternatively, you can use supported Editor to run the jupyter notebooks, e.g. with VS Code.

0 commit comments

Comments
 (0)