https://github.com/joaopalmeiro/notebook-notes
Personal notes on computational notebooks and such platforms.
https://github.com/joaopalmeiro/notebook-notes
Last synced: about 1 month ago
JSON representation
Personal notes on computational notebooks and such platforms.
- Host: GitHub
- URL: https://github.com/joaopalmeiro/notebook-notes
- Owner: joaopalmeiro
- Created: 2022-08-01T20:58:09.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-13T13:40:44.000Z (6 months ago)
- Last Synced: 2025-01-31T07:12:03.483Z (3 months ago)
- Homepage:
- Size: 1.03 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# notebook-notes
Personal notes on computational notebooks and such platforms.
## Resources
- [Data Science Notebooks](https://datasciencenotebook.org/) website
## Snippets
### Install packages if on Google Colab
```python
import osif "COLAB_GPU" in os.environ:
!pip install feedzai-altair-theme
```#### References
- [Test if notebook is running on Google Colab](https://stackoverflow.com/questions/53581278/test-if-notebook-is-running-on-google-colab) thread
### Install packages if on Deepnote
```python
import osif "DEEPNOTE_PROJECT_ID" in os.environ and "DEEPNOTE_PROJECT_OWNER_ID" in os.environ:
!pip install altair vega-datasets feedzai-altair-theme
```#### References
- [Pre-installed packages](https://docs.deepnote.com/environment/pre-installed-packages) documentation page
- [Python requirements](https://docs.deepnote.com/environment/python-requirements) documentation page