Skip to content

Commit 23cf2b5

Browse files
author
github-actions
committed
setup guides generated
1 parent 8858e55 commit 23cf2b5

14 files changed

+83
-167
lines changed

LINUX.es.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -490,19 +490,19 @@ python3-dev
490490
Instala la [última versión estable de Python](https://www.python.org/doc/versions/) que sea aceptada en el currículum de Le Wagon:
491491

492492
```bash
493-
pyenv install 3.10.6
493+
pyenv install 3.12.9
494494
```
495495

496496
Este comando puede tomar un tiempo en ejecutarse. Esto es completamente normal. ¡No dudes en ayudar a los estudiantes que estén sentados cerca de ti!
497497

498498
OK. Cuando este comando termine de ejecutarse, le diremos al sistema que use esta versión de Python **por defecto**. Esto se hace con:
499499

500500
```bash
501-
pyenv global 3.10.6
501+
pyenv global 3.12.9
502502
exec zsh
503503
```
504504

505-
Para verificar que esto haya funcionado, ejecuta `python --version`. Si ves `3.10.6`, ¡todo está bien! Si no, pídele ayuda a un TA para resolver el problema por medio de `versiones de pyenv` y `type -a python` (`python` debería estar usando la versión `.pyenv/shims` de primero).
505+
Para verificar que esto haya funcionado, ejecuta `python --version`. Si ves `3.12.9`, ¡todo está bien! Si no, pídele ayuda a un TA para resolver el problema por medio de `versiones de pyenv` y `type -a python` (`python` debería estar usando la versión `.pyenv/shims` de primero).
506506

507507

508508
## Entorno Virtual de Python
@@ -519,7 +519,7 @@ exec zsh
519519
Crea el entorno virtual que usaremos durante todo el bootcamp:
520520

521521
```bash
522-
pyenv virtualenv 3.10.6 lewagon
522+
pyenv virtualenv 3.12.9 lewagon
523523
```
524524

525525
Define el entorno virtual con lo siguiente:
@@ -629,7 +629,7 @@ Puedes cerrar tu navegador web y luego cerrar el servidor jupyter con `CTRL` + `
629629

630630
Verifica tu versión de Python con los siguientes comandos:
631631
```bash
632-
zsh -c "$(curl -fsSL https://raw.githubusercontent.com/lewagon/data-setup/master/checks/python_checker.sh)" 3.10.6
632+
zsh -c "$(curl -fsSL https://raw.githubusercontent.com/lewagon/data-setup/master/checks/python_checker.sh)" 3.12.9
633633
```
634634

635635
Ejecuta el comando siguiente para verificar que hayas instalado los paquetes requeridos correctamente:

LINUX.md

Lines changed: 7 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ python3-dev
511511
Let's install the [latest stable version of Python](https://www.python.org/doc/versions/) supported by Le Wagon's curriculum:
512512

513513
```bash
514-
pyenv install 3.10.6
514+
pyenv install 3.12.9
515515
```
516516

517517
This command might take a while, this is perfectly normal. Don't hesitate to help other students seated next to you!
@@ -528,7 +528,7 @@ source ~/.zprofile
528528
Then try to install Python again:
529529

530530
```bash
531-
pyenv install 3.10.6
531+
pyenv install 3.12.9
532532
```
533533

534534
If `pyenv` is still not found, contact a teacher.
@@ -540,11 +540,11 @@ If `pyenv` is still not found, contact a teacher.
540540
OK once this command is complete, we are going to tell the system to use this version of Python **by default**. This is done with:
541541

542542
```bash
543-
pyenv global 3.10.6
543+
pyenv global 3.12.9
544544
exec zsh
545545
```
546546

547-
To check if this worked, run `python --version`. If you see `3.10.6`, perfect! If not, ask a TA that will help you debug the problem thanks to `pyenv versions` and `type -a python` (`python` should be using the `.pyenv/shims` version first).
547+
To check if this worked, run `python --version`. If you see `3.12.9`, perfect! If not, ask a TA that will help you debug the problem thanks to `pyenv versions` and `type -a python` (`python` should be using the `.pyenv/shims` version first).
548548

549549

550550
## Python Virtual Environment
@@ -561,7 +561,7 @@ exec zsh
561561
Let's create the virtual environment we are going to use during the whole bootcamp:
562562

563563
```bash
564-
pyenv virtualenv 3.10.6 lewagon
564+
pyenv virtualenv 3.12.9 lewagon
565565
```
566566

567567
Let's now set the virtual environment with:
@@ -590,18 +590,7 @@ pip install -r https://raw.githubusercontent.com/lewagon/data-setup/master/specs
590590
```
591591

592592

593-
## `jupyter` notebook extensions
594-
595-
Pimp your `jupyter` notebooks with awesome extensions:
596-
597-
```bash
598-
# install nbextensions
599-
jupyter contrib nbextension install --user
600-
jupyter nbextension enable toc2/main
601-
jupyter nbextension enable collapsible_headings/main
602-
jupyter nbextension enable spellchecker/main
603-
jupyter nbextension enable code_prettify/code_prettify
604-
```
593+
## `jupyter` notebook tweaking and check up
605594

606595
### Custom CSS
607596

@@ -654,24 +643,14 @@ A tab should open on a new notebook:
654643

655644
![jupyter_notebook.png](images/jupyter_notebook.png)
656645

657-
### `nbextensions` check up
658-
659-
Perform a sanity check for `jupyter notebooks nbextensions`. Click on `Nbextensions`:
660-
661-
![jupyter_nbextensions.png](images/jupyter_nbextensions.png)
662-
663-
Untick _"disable configuration for nbextensions without explicit compatibility"_ then check that _at least_ all `nbextensions` circled in red are enabled:
664-
665-
![nbextensions.png](images/nbextensions.png)
666-
667646
You can close your web browser then terminate the jupyter server with `CTRL` + `C`.
668647

669648

670649
### Python setup check up
671650

672651
Check your Python version with the following commands:
673652
```bash
674-
zsh -c "$(curl -fsSL https://raw.githubusercontent.com/lewagon/data-setup/master/checks/python_checker.sh)" 3.10.6
653+
zsh -c "$(curl -fsSL https://raw.githubusercontent.com/lewagon/data-setup/master/checks/python_checker.sh)" 3.12.9
675654
```
676655

677656
Run the following command to check if you successfully installed the required packages:

LINUX_keep_current.es.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ cd $(pyenv root) && git pull
9393
Instala la versión actual de python:
9494

9595
```bash
96-
pyenv install 3.10.6
96+
pyenv install 3.12.9
9797
```
9898

9999
👉 Asegúrate de que el comando se ejecute completamente y luego **reinicia tu terminal**.
@@ -107,7 +107,7 @@ pyenv virtualenv-delete lewagon_current
107107
Crea un nuevo ambiente virtual:
108108

109109
```bash
110-
pyenv virtualenv 3.10.6 lewagon_current
110+
pyenv virtualenv 3.12.9 lewagon_current
111111
```
112112

113113
Define el nuevo ambiente virtual como predeterminado:
@@ -126,8 +126,8 @@ pyenv versions
126126

127127
``` bash
128128
system
129-
3.10.6
130-
3.10.6/envs/lewagon_current
129+
3.12.9
130+
3.12.9/envs/lewagon_current
131131
3.7.6
132132
3.7.6/envs/lewagon
133133
* lewagon_current
@@ -277,7 +277,7 @@ sudo service docker stop
277277

278278
Verifica tu versión de Python con los siguientes comandos:
279279
```bash
280-
zsh -c "$(curl -fsSL https://raw.githubusercontent.com/lewagon/data-setup/master/checks/python_checker.sh)" 3.10.6
280+
zsh -c "$(curl -fsSL https://raw.githubusercontent.com/lewagon/data-setup/master/checks/python_checker.sh)" 3.12.9
281281
```
282282

283283
Ejecuta el comando siguiente para verificar que hayas instalado los paquetes requeridos correctamente:

LINUX_keep_current.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ cd $(pyenv root) && git pull
9393
Install the current python version :
9494

9595
```bash
96-
pyenv install 3.10.6
96+
pyenv install 3.12.9
9797
```
9898

9999
👉 Make sure that the command completes correctly and **restart your terminal**
@@ -107,7 +107,7 @@ pyenv virtualenv-delete lewagon_current
107107
Create a new virtual environment :
108108

109109
```bash
110-
pyenv virtualenv 3.10.6 lewagon_current
110+
pyenv virtualenv 3.12.9 lewagon_current
111111
```
112112

113113
Set the new virtual environment as default :
@@ -126,10 +126,10 @@ pyenv versions
126126

127127
``` bash
128128
system
129+
3.12.9
130+
3.12.9/envs/lewagon_current
129131
3.10.6
130-
3.10.6/envs/lewagon_current
131-
3.7.6
132-
3.7.6/envs/lewagon
132+
3.10.6/envs/lewagon
133133
* lewagon_current
134134
lewagon
135135
```
@@ -277,7 +277,7 @@ sudo service docker stop
277277

278278
Check your Python version with the following commands:
279279
```bash
280-
zsh -c "$(curl -fsSL https://raw.githubusercontent.com/lewagon/data-setup/master/checks/python_checker.sh)" 3.10.6
280+
zsh -c "$(curl -fsSL https://raw.githubusercontent.com/lewagon/data-setup/master/checks/python_checker.sh)" 3.12.9
281281
```
282282

283283
Run the following command to check if you successfully installed the required packages:

VM.es.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -634,19 +634,19 @@ python3-dev
634634
Instala la [última versión estable de Python](https://www.python.org/doc/versions/) que sea aceptada en el currículum de Le Wagon:
635635

636636
```bash
637-
pyenv install 3.10.6
637+
pyenv install 3.12.9
638638
```
639639

640640
Este comando puede tomar un tiempo en ejecutarse. Esto es completamente normal. ¡No dudes en ayudar a los estudiantes que estén sentados cerca de ti!
641641

642642
OK. Cuando este comando termine de ejecutarse, le diremos al sistema que use esta versión de Python **por defecto**. Esto se hace con:
643643

644644
```bash
645-
pyenv global 3.10.6
645+
pyenv global 3.12.9
646646
exec zsh
647647
```
648648

649-
Para verificar que esto haya funcionado, ejecuta `python --version`. Si ves `3.10.6`, ¡todo está bien! Si no, pídele ayuda a un TA para resolver el problema por medio de `versiones de pyenv` y `type -a python` (`python` debería estar usando la versión `.pyenv/shims` de primero).
649+
Para verificar que esto haya funcionado, ejecuta `python --version`. Si ves `3.12.9`, ¡todo está bien! Si no, pídele ayuda a un TA para resolver el problema por medio de `versiones de pyenv` y `type -a python` (`python` debería estar usando la versión `.pyenv/shims` de primero).
650650

651651

652652
## Entorno Virtual de Python
@@ -663,7 +663,7 @@ exec zsh
663663
Crea el entorno virtual que usaremos durante todo el bootcamp:
664664

665665
```bash
666-
pyenv virtualenv 3.10.6 lewagon
666+
pyenv virtualenv 3.12.9 lewagon
667667
```
668668

669669
Define el entorno virtual con lo siguiente:
@@ -773,7 +773,7 @@ Puedes cerrar tu navegador web y luego cerrar el servidor jupyter con `CTRL` + `
773773

774774
Verifica tu versión de Python con los siguientes comandos:
775775
```bash
776-
zsh -c "$(curl -fsSL https://raw.githubusercontent.com/lewagon/data-setup/master/checks/python_checker.sh)" 3.10.6
776+
zsh -c "$(curl -fsSL https://raw.githubusercontent.com/lewagon/data-setup/master/checks/python_checker.sh)" 3.12.9
777777
```
778778

779779
Ejecuta el comando siguiente para verificar que hayas instalado los paquetes requeridos correctamente:

VM.md

Lines changed: 7 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -909,7 +909,7 @@ python3-dev
909909
Let's install the [latest stable version of Python](https://www.python.org/doc/versions/) supported by Le Wagon's curriculum:
910910

911911
```bash
912-
pyenv install 3.10.6
912+
pyenv install 3.12.9
913913
```
914914

915915
This command might take a while, this is perfectly normal. Don't hesitate to help other students seated next to you!
@@ -926,7 +926,7 @@ source ~/.zprofile
926926
Then try to install Python again:
927927

928928
```bash
929-
pyenv install 3.10.6
929+
pyenv install 3.12.9
930930
```
931931

932932
If `pyenv` is still not found, contact a teacher.
@@ -938,11 +938,11 @@ If `pyenv` is still not found, contact a teacher.
938938
OK once this command is complete, we are going to tell the system to use this version of Python **by default**. This is done with:
939939

940940
```bash
941-
pyenv global 3.10.6
941+
pyenv global 3.12.9
942942
exec zsh
943943
```
944944

945-
To check if this worked, run `python --version`. If you see `3.10.6`, perfect! If not, ask a TA that will help you debug the problem thanks to `pyenv versions` and `type -a python` (`python` should be using the `.pyenv/shims` version first).
945+
To check if this worked, run `python --version`. If you see `3.12.9`, perfect! If not, ask a TA that will help you debug the problem thanks to `pyenv versions` and `type -a python` (`python` should be using the `.pyenv/shims` version first).
946946

947947

948948
## Python Virtual Environment
@@ -959,7 +959,7 @@ exec zsh
959959
Let's create the virtual environment we are going to use during the whole bootcamp:
960960

961961
```bash
962-
pyenv virtualenv 3.10.6 lewagon
962+
pyenv virtualenv 3.12.9 lewagon
963963
```
964964

965965
Let's now set the virtual environment with:
@@ -988,18 +988,7 @@ pip install -r https://raw.githubusercontent.com/lewagon/data-setup/master/specs
988988
```
989989

990990

991-
## `jupyter` notebook extensions
992-
993-
Pimp your `jupyter` notebooks with awesome extensions:
994-
995-
```bash
996-
# install nbextensions
997-
jupyter contrib nbextension install --user
998-
jupyter nbextension enable toc2/main
999-
jupyter nbextension enable collapsible_headings/main
1000-
jupyter nbextension enable spellchecker/main
1001-
jupyter nbextension enable code_prettify/code_prettify
1002-
```
991+
## `jupyter` notebook tweaking and check up
1003992

1004993
### Custom CSS
1005994

@@ -1052,24 +1041,14 @@ A tab should open on a new notebook:
10521041

10531042
![jupyter_notebook.png](images/jupyter_notebook.png)
10541043

1055-
### `nbextensions` check up
1056-
1057-
Perform a sanity check for `jupyter notebooks nbextensions`. Click on `Nbextensions`:
1058-
1059-
![jupyter_nbextensions.png](images/jupyter_nbextensions.png)
1060-
1061-
Untick _"disable configuration for nbextensions without explicit compatibility"_ then check that _at least_ all `nbextensions` circled in red are enabled:
1062-
1063-
![nbextensions.png](images/nbextensions.png)
1064-
10651044
You can close your web browser then terminate the jupyter server with `CTRL` + `C`.
10661045

10671046

10681047
### Python setup check up
10691048

10701049
Check your Python version with the following commands:
10711050
```bash
1072-
zsh -c "$(curl -fsSL https://raw.githubusercontent.com/lewagon/data-setup/master/checks/python_checker.sh)" 3.10.6
1051+
zsh -c "$(curl -fsSL https://raw.githubusercontent.com/lewagon/data-setup/master/checks/python_checker.sh)" 3.12.9
10731052
```
10741053

10751054
Run the following command to check if you successfully installed the required packages:

WINDOWS.es.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1022,19 +1022,19 @@ python3-dev
10221022
Instala la [última versión estable de Python](https://www.python.org/doc/versions/) que sea aceptada en el currículum de Le Wagon:
10231023

10241024
```bash
1025-
pyenv install 3.10.6
1025+
pyenv install 3.12.9
10261026
```
10271027

10281028
Este comando puede tomar un tiempo en ejecutarse. Esto es completamente normal. ¡No dudes en ayudar a los estudiantes que estén sentados cerca de ti!
10291029

10301030
OK. Cuando este comando termine de ejecutarse, le diremos al sistema que use esta versión de Python **por defecto**. Esto se hace con:
10311031

10321032
```bash
1033-
pyenv global 3.10.6
1033+
pyenv global 3.12.9
10341034
exec zsh
10351035
```
10361036

1037-
Para verificar que esto haya funcionado, ejecuta `python --version`. Si ves `3.10.6`, ¡todo está bien! Si no, pídele ayuda a un TA para resolver el problema por medio de `versiones de pyenv` y `type -a python` (`python` debería estar usando la versión `.pyenv/shims` de primero).
1037+
Para verificar que esto haya funcionado, ejecuta `python --version`. Si ves `3.12.9`, ¡todo está bien! Si no, pídele ayuda a un TA para resolver el problema por medio de `versiones de pyenv` y `type -a python` (`python` debería estar usando la versión `.pyenv/shims` de primero).
10381038

10391039

10401040
## Entorno Virtual de Python
@@ -1051,7 +1051,7 @@ exec zsh
10511051
Crea el entorno virtual que usaremos durante todo el bootcamp:
10521052

10531053
```bash
1054-
pyenv virtualenv 3.10.6 lewagon
1054+
pyenv virtualenv 3.12.9 lewagon
10551055
```
10561056

10571057
Define el entorno virtual con lo siguiente:
@@ -1205,7 +1205,7 @@ Puedes cerrar tu navegador web y luego cerrar el servidor jupyter con `CTRL` + `
12051205

12061206
Verifica tu versión de Python con los siguientes comandos:
12071207
```bash
1208-
zsh -c "$(curl -fsSL https://raw.githubusercontent.com/lewagon/data-setup/master/checks/python_checker.sh)" 3.10.6
1208+
zsh -c "$(curl -fsSL https://raw.githubusercontent.com/lewagon/data-setup/master/checks/python_checker.sh)" 3.12.9
12091209
```
12101210

12111211
Ejecuta el comando siguiente para verificar que hayas instalado los paquetes requeridos correctamente:

0 commit comments

Comments
 (0)