https://github.com/lewagon/intro-to-data-science-challenges
Introduction to Data Science Challenges
https://github.com/lewagon/intro-to-data-science-challenges
Last synced: 8 months ago
JSON representation
Introduction to Data Science Challenges
- Host: GitHub
- URL: https://github.com/lewagon/intro-to-data-science-challenges
- Owner: lewagon
- Created: 2020-09-28T12:46:13.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-02-25T13:23:17.000Z (over 1 year ago)
- Last Synced: 2025-05-01T08:34:08.724Z (about 1 year ago)
- Language: Jupyter Notebook
- Size: 15.4 MB
- Stars: 1
- Watchers: 11
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
setup environment for the [Introduction to Data Science](https://github.com/lewagon/intro-to-data-science-challenges) challenges
the challenges are served through [mybinder](https://www.notion.so/lewagon/B2U-Intro-to-Data-Science-f88a9af1afff44109bfd3)
entry point: https://mybinder.org/v2/gh/lewagon/intro-to-data-science-challenges/master
# update package version
update the contents of `requirements_raw.txt`, then process `requirements.txt` from a new env:
``` bash
pyenv install 3.10.13
pyenv virtualenv-delete binder
pyenv virtualenv 3.10.13 binder
pyenv local binder
pip install -U pip
export REQ_URL=https://raw.githubusercontent.com/lewagon/intro-to-data-science-env/master/requirements_raw.txt
export PACKAGES=$(curl -s ${REQ_URL} | tr "\\n" " ")
pip install $(echo ${PACKAGES})
pip freeze | grep $(echo ${$(echo ${PACKAGES})/#/-e }) > requirements.txt
```
# info
`build.log` contains the mybinder image build and container start logs