An open API service indexing awesome lists of open source software.

https://github.com/blairnangle/drops-of-jupyter

Useful code snippets for Jupyter Notebooks.
https://github.com/blairnangle/drops-of-jupyter

jupyter-notebook

Last synced: 2 months ago
JSON representation

Useful code snippets for Jupyter Notebooks.

Awesome Lists containing this project

README

        

# drops-of-jupyter

Useful code snippets for Jupyter Notebooks.

## Prerequisites

* [Python 3](https://www.python.org/downloads/)
* [pip](https://pypi.org/project/pip/) (included by default with Python versions >= 3.4)
* [venv](https://docs.python.org/3/library/venv.html) (included by default with Python versions >= 3.3)

## Installation

* Create a virtual environment:

```shell
python -m venv venv
```
* Activate the virtual environment:

```shell
source venv/bin/activate
```

* Install requirements:

```shell
pip install -r requirements.txt
```

## License

Distributed under an [MIT License](./LICENSE).