Questions tagged [jupyter-lab]

JupyterLab is a web application that provides a frontend to many different languages and interactive shells such as IPython. JupyterLab enables you to work with documents and activities such as Jupyter notebooks, text editors, terminals, and custom components. You can arrange documents side by side using tabs and splitters. It supports Markdown, Python, R, LaTeX, images, CSV, JSON, PDF, Vega etc. Use this tag for questions related only to JupyterLab.

2575 questions
1
vote
2 answers

jupyterlab/plotly-extension won't install

Jupyterlab 0.31.8 Ubuntu 14.04 Plotly 3.0.0 I'm trying to install the Plotly jupyterlab extension. Running jupyter labextension install @jupyterlab/plotly-extension --debug results in > /usr/bin/npm pack @jupyterlab/plotly-extension npm ERR! git…
jpobst
  • 3,491
  • 2
  • 25
  • 24
1
vote
1 answer

Executing JupyterLab non-python notebook from command line

I've been looking into nbconvert as a possible way of programmatically executing notebooks, but it isn't clear to me that it will work with different Kernels. I'm planning on using JupyterHub + JupyterLab for code development using a number of…
Mark
  • 816
  • 1
  • 9
  • 27
1
vote
1 answer

WIDGET ON JUPYTER LAB

I am trying to get a variable inspector widget to work on JUPYTER LAB, following, among others, the comments in this discussion: Variable Explorer in Jupyter Notebook I understand it works for JUPYTER NOTEBOOK (and I have been able to do that), but…
Jorge
  • 2,181
  • 1
  • 19
  • 30
1
vote
2 answers

Is there a way to run threejs in jupyter's ijavascript kernel?

I have a library building on top of three.js, and I'd like to run it in a ijavascript (jupyter + ijavascript) notebook. Does anyone know if that's possible? From what I can tell, three.js runs just fine using require('three'), but I'm having…
Joshua M. Moore
  • 381
  • 6
  • 20
1
vote
2 answers

Jupyter Lab Window Not Showing Properly

I just installed Jupyter Lab and tried it, however it doesn't showup properly. I tried reinstalling and installing but it show the same bug. I am using dell xps 13, I tried installing it using: 'pip install jupyterlab', and 'conda install -c…
eljirg
  • 33
  • 4
1
vote
0 answers

Running Tensorboard on same port as jupyter lab

This is running jupyter and tensorboard on same port. I want to do same for jupyter lab, but I am unable to understand how to run both on same port. Running tensorboard : tensorboard --logdir={path to eventfile} --port={port number}
1
vote
2 answers

Exporting multiple csv files with dynamic naming

I created about 200 csv files in Python and now need to download them all. I created the files from a single file using: g = df.groupby("col") for n,g in df.groupby('col'): g.to_csv(n+'stars'+'.csv') When I try to use this same statement to…
LMGagne
  • 1,636
  • 6
  • 24
  • 47
1
vote
2 answers

JupyterLab does not execute code

I have a installation of Anaconda-Navigator which used to work on my Macbook, currently JupyterLab does not execute code when I try to run it. I have uninstalled and reinstalled I shift + enter to run a code block "print("a")" but nothing happens,…
1
vote
1 answer

jupyter lab importing modules

I am using jupyter lab on linux, and I have started it various working directories, including /, but I am having problems importing a module I installed with pip. Here is what I did: pip install primer3-py Then run ipython Within ipython run import…
The Nightman
  • 5,609
  • 13
  • 41
  • 74
1
vote
0 answers

How to config NGINX port redirection?RStudio, Jupyter and JupyterLab

I have jupyter running on port 8000 and jupyter lab running on 8888. Nginx configuration looks like (server listens on port 80): location /julia/ { proxy_pass http://localhost:8000; proxy_set_header Host $host; proxy_set_header X-Real-IP…
1
vote
0 answers

How to create synchronized view for output of all cells in Jupyter Lab?

This video shows how to create a synchronized view in a Jupyter notebook but it is tied to one cell's output. How can I do this but for any cell's outputs? Ideally something like the Plots viewer in RStudio.
Char
  • 1,635
  • 7
  • 27
  • 38
1
vote
0 answers

Error while trying to install JupyterLab with pip

I have just installed Anaconda on a new machine (Microsoft Windows 10 Enterprise, 64-bit). As I try to install JupyterLab with pip, I always get the following error: Collecting ipykernel (from notebook>=4.3.1->jupyterlab) Retrying (Retry(total=4,…
FaCoffee
  • 7,609
  • 28
  • 99
  • 174
1
vote
1 answer

Cannot save notebook in docker image

I am running a docker image from https://github.com/jupyter/docker-stacks on a machine where I do not have sudo rights. For some reason, if I run the image like this: $ docker run -it --rm -p 8888:8888 -v /home/user_name/:/home/jovyan/work/ -e…
Stefan Falk
  • 23,898
  • 50
  • 191
  • 378
1
vote
0 answers

jupyter lab script to set up view layout

I have some python functions to create graphical interface components in jupyter (lab) using ipywidgets. For my specific application, it's very useful to create different views for different cell outputs containing different widgets. I do this…
Mei Zhang
  • 1,434
  • 13
  • 29
1
vote
2 answers

JupyterLab output doesnt show visualization

Encountered this issue with 2 different visualization libraries. PYLDAVIS and DISPLACY (spacy). On executing a code in jupyterlab (kernel as python3), the output expected should be Jupyter Notebook to show the graph or webcontent. But my Jupyter…