You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Reverting to an older version and disabling auto-update](#Reverting-to-an-older-version-and-disabling-auto-update)
22
23
23
24
## JupyterLab Desktop vs JupyterLab Web Application versions
24
25
@@ -195,3 +196,19 @@ Application launch might fail for various reasons and it is best to check logs f
195
196
3. Try removing custom environment settings from `settings.json` and/or `desktop-settings.json`. You can see [configuration and data files section in User Guide](user-guide.md#Configuration-and-data-files) for the locations of these files in different systems. Retry launch and check logs.
196
197
4. Try removing application cache data from `app-data.json`. Retry launch and check logs.
197
198
5. Try to launch using `jlab --log-level debug` CLI command to check if there are any logs output in system Terminal.
199
+
200
+
## Reverting to an older version and disabling auto-update
201
+
202
+
JupyterLab Desktop automatically downloads and installs new versions on some platforms. If newer versions are causing compatibility issues or other problems you can reinstall an older version. Follow the steps below to disable auto-updates, and revert to an older version.
203
+
204
+
1. Close all running JupyterLab Desktop instances, make sure all processes have stopped.
205
+
2. Open your [User settings file](user-guide.md#configuration-and-data-files) and add the settings below.
206
+
207
+
```json
208
+
{
209
+
"checkForUpdatesAutomatically": false,
210
+
"installUpdatesAutomatically": false
211
+
}
212
+
```
213
+
214
+
3. Install older version of JupyterLab Desktop from the [Releases](https://github.com/jupyterlab/jupyterlab-desktop/releases/) page.
0 commit comments