File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -65,6 +65,31 @@ extension, making this step only needed for JupyterLab 2.
65
65
jupyter labextension install @jupyterlab/server-proxy
66
66
```
67
67
68
+ ## Disable
69
+
70
+ ### Server extension
71
+
72
+ ```
73
+ jupyter serverextension disable jupyter_server_proxy
74
+ ```
75
+
76
+ ### Notebook classic extension
77
+
78
+ ```
79
+ jupyter nbextension disable --py jupyter_server_proxy
80
+ ```
81
+
82
+ ### JupyterLab extension
83
+
84
+ Note that the extension name provided to the command (` jupyterlab-server-proxy ` ) does not correspond
85
+ to the extension package name (` @jupyterlab/server-proxy ` ). The ` jupyter labextension list ` will
86
+ incorrectly report the extension as still being enabled after executing the disable command.
87
+ This will be fixed in the next major release of jupyter-server-proxy.
88
+
89
+ ```
90
+ jupyter labextension disable jupyterlab-server-proxy
91
+ ```
92
+
68
93
## Local development
69
94
70
95
See [ CONTRIBUTING.md] ( CONTRIBUTING.md ) .
You can’t perform that action at this time.
0 commit comments