From 7539c5d9468cf47ef1e8b09935ed8320fc923772 Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Mon, 13 Aug 2018 14:17:41 -0600 Subject: [PATCH] Use node 8, not 10 JupyterLab currently doesn't let you install extensions with node 10, so move back to 8 --- tljh/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tljh/installer.py b/tljh/installer.py index a9357ef..3a3f3d2 100644 --- a/tljh/installer.py +++ b/tljh/installer.py @@ -92,7 +92,7 @@ sckuXINIU3DFWzZGr0QrqkuE/jyr7FXeUJj9B7cLo+s/TXo+RaVfi3kOc9BoxIvy -----END PGP PUBLIC KEY BLOCK----- """.strip() apt.trust_gpg_key(key) - apt.add_source('nodesource', f'https://deb.nodesource.com/node_10.x', 'main') + apt.add_source('nodesource', f'https://deb.nodesource.com/node_8.x', 'main') apt.install_packages(['nodejs'])