Skip to content

Commit 11b733a

Browse files
committed
Adds jupyterlab to list of pip installs.
1 parent 7f6b366 commit 11b733a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

installing-python-macos.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ After, we'll install the suite of Jupyter tools and some additional useful packa
194194

195195
```
196196
# Really, really make sure that you have activated `cs41-env` before running this line!
197-
(cs41-env) sredmond$ pip install "ipython[all]" jupyter numpy scipy matplotlib nltk scikit-learn requests pycodestyle autopep8 Pillow
197+
(cs41-env) sredmond$ pip install "ipython[all]" jupyter jupyterlab numpy scipy matplotlib nltk scikit-learn requests pycodestyle autopep8 Pillow
198198
```
199199

200200
This will produce a huge amount of output, as Python is downloading these third-party libraries and tools from the internet and storing them inside our virtual environment. These packages will be available when our virtual environment is activated, but will not necessarily be available if our virtual environment is disactivated. For this reason, it's important to always have an active virtual environment when working on code in this class.
@@ -427,7 +427,7 @@ Lastly, install the useful Python packages discussed above into this virtual env
427427

428428
```
429429
(cs41-env)$
430-
$ pip install "ipython[all]" jupyter numpy scipy matplotlib nltk scikit-learn requests pep8 autopep8 Pillow
430+
$ pip install "ipython[all]" jupyter jupyterlab numpy scipy matplotlib nltk scikit-learn requests pep8 autopep8 Pillow
431431
```
432432

433433
### Startup Commands and Cleanup

0 commit comments

Comments
 (0)