Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cmckni3/my-jupyter
My jupyter notebooks
https://github.com/cmckni3/my-jupyter
jupyter jupyter-notebook
Last synced: 2 months ago
JSON representation
My jupyter notebooks
- Host: GitHub
- URL: https://github.com/cmckni3/my-jupyter
- Owner: cmckni3
- License: mit
- Created: 2016-02-03T16:09:24.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-11-12T03:40:14.000Z (over 7 years ago)
- Last Synced: 2024-10-06T12:41:52.736Z (5 months ago)
- Topics: jupyter, jupyter-notebook
- Language: Jupyter Notebook
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# My Jupyter notebooks
## Requirements
* jupyter
* zeromq 3.2 (required by jupyter for message passing)
* Ruby 2.1+ (to use Ruby kernel)
* node 0.10+ (to use JavaScript/Coffeescript kernels)
* iruby (Ruby kernel)
* jp-babel (babel kernel)## Jupyter Setup
```bash
brew install zmq
pip install virtualenv virtualenvwrapper
source /usr/local/bin/virtualenvwrapper.sh
mkvirtualenv jupyter
pip install -r requirements.txt
```See [virtualenvwrapper](http://virtualenvwrapper.readthedocs.io/en/latest/) for more information
### Install Ruby Kernel
Install Ruby 2.1 or higher using your favorite method. I prefer [rbenv](https://github.com/rbenv/rbenv#installation)
```bash
bundle
bundle exec iruby notebook # run the kernel to install it
```### Install Node/babel
Install node.js 0.10 or higher using your favorite method. I prefer [nvm](https://github.com/creationix/nvm#installation)
```bash
yarn install
yarn babel # run the kernel to install it
```## Running notebooks
After installing a kernel mentioned above, `jupyter notebook` will launch the
jupyter server to use notebooks.