@@ -89,28 +89,27 @@ pip install escher
89
89
90
90
## Jupyter extensions
91
91
92
- To install the Jupyter lab extension, simply install Escher with pip then
93
- install the extension:
94
-
95
- ``` bash
96
- pip install escher
97
- jupyter labextension install @jupyter-widgets/jupyterlab-manager
98
- jupyter labextension install escher
99
- ```
100
-
101
- To install the Jupyter notebook extension, run the following:
92
+ When you ` pip install escher ` , the Jupyter notebook extension should be
93
+ installed automatically. If that doesn't work, try:
102
94
103
95
``` bash
104
- pip install escher
105
- # you'll need version >=5 of the `notebook` package
96
+ # The notebook extenstion should install automatically. You can check by running:
97
+ jupyter nbextension list
98
+ # Make sure you have version >=5 of the `notebook` package
106
99
pip install " notebook>=5"
100
+ # To manually install the extension
107
101
jupyter nbextension install --py escher
108
102
jupyter nbextension enable --py escher
103
+ # depending on you environment, you might need the `--sysprefix` flag with those commands
109
104
```
110
105
111
- Note: depending on you environment, you might want to add the ` --sysprefix ` flag
112
- to the nbextension commands. You might also need to use ` sudo ` to get around
113
- permissions issues.
106
+ To install the Jupyter lab extension, simply install Escher with ` pip install escher ` then
107
+ install the extension:
108
+
109
+ ``` bash
110
+ jupyter labextension install @jupyter-widgets/jupyterlab-manager
111
+ jupyter labextension install escher
112
+ ```
114
113
115
114
## Python/Jupyter Development
116
115
0 commit comments