Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lukasheinrich/py38-binder
https://github.com/lukasheinrich/py38-binder
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/lukasheinrich/py38-binder
- Owner: lukasheinrich
- License: bsd-3-clause
- Created: 2019-10-17T17:35:29.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-10-17T17:35:53.000Z (over 5 years ago)
- Last Synced: 2024-12-27T03:42:15.658Z (about 1 month ago)
- Language: Jupyter Notebook
- Size: 92.8 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python environment with requirements.txt
[![Binder](http://mybinder.org/badge_logo.svg)](http://mybinder.org/v2/gh/binder-examples/requirements/master)
A Binder-compatible repo with a `requirements.txt` file.
Access this Binder at the following URL
http://mybinder.org/v2/gh/binder-examples/requirements/master
## Notes
The `requirements.txt` file should list all Python libraries that your notebooks
depend on, and they will be installed using:```
pip install -r requirements.txt
```The base Binder image contains no extra dependencies, so be as
explicit as possible in defining the packages that you need. This includes
specifying explict versions wherever possible.In this example we include the library `seaborn` which will be installed in
the environment, and our notebook uses it to plot a figure.