0

I don’t have root access for the Linux machine and I want to run Jupyter notebook/ juptyerLite on it. I can’t use pip to install it. Is there any way to run Jupyter notebook or JupyterLite without installing or running without root permission? I need to write basic scripts as part of my office work.

yadav
  • 99
  • 3
  • 9
  • This sounds strange but what about running a notebook at eg. Google Colab? – Yannis P. Aug 06 '22 at 17:02
  • I need to access the local disk paths on a Linux machine. so Need to run locally. – yadav Aug 06 '22 at 17:04
  • 1
    What about the solutions [here](https://stackoverflow.com/questions/40852267/installing-pip-locally-without-root-privileges)? – Yannis P. Aug 06 '22 at 17:07
  • I was able to install Jupyter notebook using by creating a virtual environment. I can see its installed using 'pip list' but when I run it using 'jupyter notebook' it says "Command not found" – yadav Aug 07 '22 at 02:23

1 Answers1

1

Try using miniconda. It can install in your user's home directory. Then, you can create a local Python environment and use pip.

Eduardo
  • 1,383
  • 8
  • 13