Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jongha/jupyter-heroku
Jupyter package for Heroku
https://github.com/jongha/jupyter-heroku
heroku jupyter jupyter-heroku
Last synced: about 1 month ago
JSON representation
Jupyter package for Heroku
- Host: GitHub
- URL: https://github.com/jongha/jupyter-heroku
- Owner: jongha
- License: mit
- Created: 2016-11-09T10:53:49.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-15T03:36:22.000Z (about 8 years ago)
- Last Synced: 2024-12-09T12:58:50.290Z (about 1 month ago)
- Topics: heroku, jupyter, jupyter-heroku
- Language: Python
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jupyter-heroku
* Install development libraries `sudo apt-get install libblas-dev liblapack-dev libatlas-base-dev gfortran`
* Create Procfile with `web: gunicorn -b 0.0.0.0:$PORT app:app`
* Run `virtualenv venv`
* VirtualEnv for Python3: `virtualenv -p python3 venv`
* Run `source venv/bin/activate`* Run `pip freeze > requirements.txt`
* Add `psycopg2` to the end of requirements.txt
* Run `heroku create --stack cedar`