File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -113,11 +113,19 @@ python3 -m venv venv # create venv
113
113
. venv/bin/activate # activate venv
114
114
pip3 install -r requirements.txt # install dependencies
115
115
```
116
+ or depending on your Python installation
117
+
118
+ ```
119
+ python -m venv venv # create venv
120
+ . venv/bin/activate # activate venv
121
+ pip install -r requirements.txt # install dependencies
122
+ ```
123
+
116
124
For Windows:
117
125
```
118
126
.\venv\Scripts\activate # activate venv
119
127
```
120
128
You can now start Jupyter lab by running ` jupyter lab ` , which should open a new browser window/tab.
121
129
Open ` mosaic.ipynb ` and sequentially run all cells.
122
130
123
- ** Congrats!** If all the notebook cells run without errors, you are ready to attend the practical session!
131
+ ** Congrats!** If all the notebook cells run without errors, you are ready to attend the practical session
You can’t perform that action at this time.
0 commit comments