Re: [jupyter] Re: notebook server config files in jupyterhub

2017-04-19 Thread MinRK
It sounds like you might have an out of date version of the docs. The current version of that documentation appears to have the right filenames and paths. -Min ​ On Wed, Apr 12, 2017 at

Re: [jupyter] Re: notebook server config files in jupyterhub

2017-04-19 Thread Carol Willing
Sorry about the confusion Philip. The stable docs (up to 0.7.2) do have the IPython references; while the latest docs, as Min mentions, show the correct filenames and paths. MinRK wrote: It sounds like you might have an out of date version of the docs. The current version

Re: [jupyter] How to run forked version of notebook when testing contributions?

2017-04-19 Thread Thomas Kluyver
Hi Adam, Do you have the necessary Javascript tools set up to rebuild Javascript and CSS if you're changing those pieces? http://jupyter-notebook.readthedocs.io/en/latest/contributing.html Changes to frontend stuff are also sometimes hidden by the browser cache. Usually pressing Ctrl-F5 a few

Re: [jupyter] How to run forked version of notebook when testing contributions?

2017-04-19 Thread s...@draves.org
It depends on what codebase you are changing, but normally you have to install your changes into your working environment before they take effect. The README from your clone should have instructions. Commonly it would be "pip install -e ." If you can say more about what you have done (what did you

[jupyter] How to run forked version of notebook when testing contributions?

2017-04-19 Thread Adam Rule
I'm attempting to Contribute to the Notebook and have followed the instructions for forking, branching, and making changes to the codebase.

[jupyter] reprs in IRKernel question

2017-04-19 Thread Kyle Kelley
I wasn't really sure where to post this, so I made a stackoverflow question about integrating objects with IRKernel: http://stackoverflow.com/questions/43505637/integrating-objects-with-irkernel I'm wondering in particular so that I can add on to Sparklyr and SparkR like was done in pyspark

[jupyter] Re: RhodeCode support for jupyter notebooks rendering

2017-04-19 Thread marcin
The release 4.7 is out. If anyone is looking for a self-hosted version control management system that supports native notebook rendering i encourage to take a look at RhodeCode. On Wednesday, March 8, 2017 at 12:43:09 PM UTC+1, mar...@rhodecode.com wrote: > > Hi All, > > RhodeCode

Re: [jupyter] How to run forked version of notebook when testing contributions?

2017-04-19 Thread Adam Rule
I am attempting to change actions.js and notebook.js so that the three paste items in the Edit menubar call a paste action rather than the paste function directly (issue #2415 ). I have run "pip install -e ." in the folder containing the forked

Re: [jupyter] How to run forked version of notebook when testing contributions?

2017-04-19 Thread Adam Rule
Could it be something with my branches? For example, I have a development branch I'm working on, but could "pip install -e ." be pulling from master? On Wednesday, April 19, 2017 at 3:00:07 PM UTC-7, Adam Rule wrote: > > I am attempting to change actions.js and notebook.js so that the three >

Re: [jupyter] How to run forked version of notebook when testing contributions?

2017-04-19 Thread Adam Rule
I just tried switching back to master, making changes, and rerunning 'pip install -e .' and 'npm run build' and my changes are still not showing up. I also uninstalled any version of jupyter notebook I had using "pip uninstall notebook" in case there was a conflict with the version I had