nuhyurduseven
10/14/2022, 8:34 AMjuanlu
nuhyurduseven
10/14/2022, 8:48 AMJacopo
10/14/2022, 8:49 AMkubectl get -n orchest ingress --no-headers -o custom-columns=":metadata.name" | grep jupyter-server
-> you will get one or more ingresses depending on how many interactive sessions you are currently running, either stop the ones you aren't using or the next step needs to be applied to every ingress
• apply this annotation to the ingress kubectl patch -n orchest ingress <INGRESS NAME> -p '{"metadata":{"annotations":{"<http://nginx.ingress.kubernetes.io/proxy-body-size|nginx.ingress.kubernetes.io/proxy-body-size>":"0"}} }'
Example:
kubectl patch -n orchest ingress jupyter-server-da8e8078-791a-4e730915b350-b929-4cbd -p '{"metadata":{"annotations":{"<http://nginx.ingress.kubernetes.io/proxy-body-size|nginx.ingress.kubernetes.io/proxy-body-size>":"0"}} }'
nuhyurduseven
10/14/2022, 8:51 AM%matplotlib ipympl
doesn't work, throw the "no module named ipympl". I installed with mamba for same environment.juanlu
%matplotlib ipympl
does not work, even though ipympl
is installed in the environment? ❌nuhyurduseven
10/14/2022, 12:01 PMJacopo
10/14/2022, 12:11 PMnuhyurduseven
10/14/2022, 12:13 PMJacopo
10/14/2022, 12:17 PMnuhyurduseven
10/14/2022, 12:19 PMJacopo
10/14/2022, 12:20 PMnuhyurduseven
10/14/2022, 12:21 PMjuanlu
!mamba install ipympl
in the notebook because there are some extra mechanisms involved in setting up the widgets and so on. I'll provide some more instructions in a momentnuhyurduseven
10/14/2022, 12:23 PMJacopo
10/14/2022, 12:28 PMnuhyurduseven
10/14/2022, 12:30 PMRick Lamers
ipympl
works if you install it in the environment setup script and JupyterLab config.nuhyurduseven
10/14/2022, 1:36 PMRick Lamers
nuhyurduseven
10/14/2022, 1:37 PMRick Lamers
Jacopo
10/14/2022, 1:40 PM@Jacopo’s ingress config is works for me. I can save nb nowNote that the fix will only work for that interactive session, if you want this change to be permanent you should update to v2022.10.7
nuhyurduseven
10/14/2022, 1:41 PMRick Lamers
nuhyurduseven
10/14/2022, 2:05 PMRick Lamers