Skip to content

Commit d23eb8d

Browse files
committed
merge
2 parents 39dc8e0 + 65ae06c commit d23eb8d

11 files changed

+2383
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -114,3 +114,6 @@ dmypy.json
114114
# jupyterlite
115115
*.doit.db
116116
_output
117+
118+
.DS_Store
119+
.ipynb_checkpoints

.python-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.10.13

LICENSE

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
© 2023 La Loco SAS, head of Le Wagon Group - All rights reserved

README.md

+24
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,28 @@ optional utilities and extensions to make the JupyterLite experience more enjoya
3434

3535
For a template based on the Xeus kernel, see the [`jupyterlite/xeus-python-demo` repository](https://github.com/jupyterlite/xeus-python-demo)
3636

37+
setup environment for the [Introduction to Data Science](https://github.com/lewagon/intro-to-data-science-challenges) challenges
3738

39+
the challenges are served through [mybinder](https://www.notion.so/lewagon/B2U-Intro-to-Data-Science-f88a9af1afff44109bfd3)
40+
41+
entry point: https://mybinder.org/v2/gh/lewagon/intro-to-data-science-challenges/master
42+
43+
# update package version
44+
45+
update the contents of `requirements_raw.txt`, then process `requirements.txt` from a new env:
46+
47+
``` bash
48+
pyenv install 3.10.13
49+
pyenv virtualenv-delete binder
50+
pyenv virtualenv 3.10.13 binder
51+
pyenv local binder
52+
pip install -U pip
53+
export REQ_URL=https://raw.githubusercontent.com/lewagon/intro-to-data-science-env/master/requirements_raw.txt
54+
export PACKAGES=$(curl -s ${REQ_URL} | tr "\\n" " ")
55+
pip install $(echo ${PACKAGES})
56+
pip freeze | grep $(echo ${$(echo ${PACKAGES})/#/-e }) > requirements.txt
57+
```
58+
59+
# info
60+
61+
`build.log` contains the mybinder image build and container start logs

airbnb-challenge.ipynb

+1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)