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.
- Host: GitHub
- URL: https://github.com/blairnangle/drops-of-jupyter
- Owner: blairnangle
- License: mit
- Created: 2022-12-01T12:14:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-31T13:59:55.000Z (over 2 years ago)
- Last Synced: 2025-01-25T11:41:56.550Z (4 months ago)
- Topics: jupyter-notebook
- Language: Jupyter Notebook
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).