https://github.com/qubitpi/jupyter-notebooks
Studying new technologies
https://github.com/qubitpi/jupyter-notebooks
jupyter-notebooks
Last synced: 30 days ago
JSON representation
Studying new technologies
- Host: GitHub
- URL: https://github.com/qubitpi/jupyter-notebooks
- Owner: QubitPi
- License: apache-2.0
- Created: 2024-06-25T00:55:56.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2025-03-11T13:30:07.000Z (about 2 months ago)
- Last Synced: 2025-03-11T13:41:07.694Z (about 2 months ago)
- Topics: jupyter-notebooks
- Language: Jupyter Notebook
- Homepage: https://jupyter-notebooks.qubitpi.org/
- Size: 16.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Jupyter Notebooks
=================[![Notebooks badge]][Notebooks URL]
![Python Version Badge]
[![Apache License Badge]][Apache License, Version 2.0]Notebooks
---------- [ArangoDB Notebooks](./notebooks/arangodb): ArangoDB Python API
Setup
-----### Getting Source Code
```console
https://github.com/QubitPi/jupyter-notebooks.git
```### Navigating to A Notebook Directory
```console
cd jupyter-notebooks/notebooks
```Each subdirectory in `notebooks` is a standalone Jupyter notebook. Choose and navigate into one of them. For example
```console
cd housing
```### Creating an Isolated Environment
It is strongly recommended to work in an isolated environment.
> [!IMPORTANT]
>
> If this is the very first time for initializing the environment, please install `virtualenv` and create an isolated
> Python environment by
>
> ```console
> python3 -m pip install --user -U virtualenv
> python3 -m virtualenv .venv
> ```Activate environment defined by each `requirements.txt` with:
```console
source .venv/bin/activate
```or, on Windows
```console
./venv\Scripts\activate
```> [!TIP]
>
> To deactivate this environment, use
>
> ```console
> deactivate
> ```Install dependencies by
```console
pip3 install -r requirements.txt
```### Starting Jupyter Server
Now we can fire up Jupyter by typing the following command:
```console
python3 -m ipykernel install --user --name=python3 && jupyter notebook
```The first half of the composite commands registers virtualenv to Jupyter and give it a name with `python3`
A Jupyter server is now running in our terminal, listening to port 8888. We can visit this server by opening our web
browser to http://localhost:8888/Open up one of the [notebooks](./notebooks)
License
-------The use and distribution terms for [jupyter-notebooks]() are covered by the [Apache License, Version 2.0].
[Apache License Badge]: https://img.shields.io/badge/Apache%202.0-F25910.svg?style=for-the-badge&logo=Apache&logoColor=white
[Apache License, Version 2.0]: https://www.apache.org/licenses/LICENSE-2.0[Notebooks badge]: https://img.shields.io/badge/Notebooks-F37626?style=for-the-badge&logo=jupyter&logoColor=white
[Notebooks URL]: https://jupyter-notebooks.qubitpi.org/[Python Version Badge]: https://img.shields.io/badge/Python-3.10-FFD845?labelColor=498ABC&style=for-the-badge&logo=python&logoColor=white