I am using a Jupyter notebook installed on a server. I am wondering is it possible to upload an egg file, or do a pip install from the notebook interface since I don't want to bother the system administrator for every single package I am experimenting. Thanks!
Asked
Active
Viewed 1,272 times
1
-
Doesn't pip uses local installation by default? I don't think you need administrator/sudo privileges for running pip install in your console. – Mephy Aug 02 '16 at 23:34
-
You can `pip install --user ...` or setup a virtualenv and install inside your venv – Padraic Cunningham Aug 02 '16 at 23:36
-
Hi, the thing is the attached interface is all I allowed to access. The same config is done for all users ... I am not sure if I could set a vertualenv, and have Jupyter run on that virtualenv just for myself – Edamame Aug 02 '16 at 23:43