ipython-contrib / jupyter_contrib_nbextensions

A collection of various notebook extensions for Jupyter
http://jupyter-contrib-nbextensions.readthedocs.io/en/latest
Other
5.24k stars 807 forks source link

Editable pip install #457

Closed andyneff closed 8 years ago

andyneff commented 8 years ago

I tried using pip to install a git clone with the -e flag. While part of it installed, the bulk of it (the nb extenstions dir, and setting up nb extensions) did not.

I understand that this is not your standard python pip package, and that maybe some custom symlinks/junctions would have to be added to make all the files work, but it would be nice if this pip feature worked for development purposes.

jcb91 commented 8 years ago

this would be fixed by #626

jcb91 commented 8 years ago

should now be fixed using our new 2-part install method (note renamed repo):

git clone https://github.com/ipython-contrib/jupyter_contrib_nbextensions.git jupyter_contrib_nbextensions
pip install -e ./jupyter_contrib_nbextensions
jupyter contrib nbextension install --user --symlink

where jupyter contrib nbextension install takes the same flags as jupyter nbextension install.

Closing, assuming fixed, but please reopen if it doesn't work as intended for you