Skip to content

Commit

Permalink
setup guides generated
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Mar 3, 2025
1 parent 8858e55 commit 23cf2b5
Show file tree
Hide file tree
Showing 14 changed files with 83 additions and 167 deletions.
10 changes: 5 additions & 5 deletions LINUX.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -490,19 +490,19 @@ python3-dev
Instala la [última versión estable de Python](https://www.python.org/doc/versions/) que sea aceptada en el currículum de Le Wagon:

```bash
pyenv install 3.10.6
pyenv install 3.12.9
```

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!

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

```bash
pyenv global 3.10.6
pyenv global 3.12.9
exec zsh
```

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).
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).


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

```bash
pyenv virtualenv 3.10.6 lewagon
pyenv virtualenv 3.12.9 lewagon
```

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

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

Ejecuta el comando siguiente para verificar que hayas instalado los paquetes requeridos correctamente:
Expand Down
35 changes: 7 additions & 28 deletions LINUX.md
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ python3-dev
Let's install the [latest stable version of Python](https://www.python.org/doc/versions/) supported by Le Wagon's curriculum:

```bash
pyenv install 3.10.6
pyenv install 3.12.9
```

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

```bash
pyenv install 3.10.6
pyenv install 3.12.9
```

If `pyenv` is still not found, contact a teacher.
Expand All @@ -540,11 +540,11 @@ If `pyenv` is still not found, contact a teacher.
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:

```bash
pyenv global 3.10.6
pyenv global 3.12.9
exec zsh
```

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).
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).


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

```bash
pyenv virtualenv 3.10.6 lewagon
pyenv virtualenv 3.12.9 lewagon
```

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


## `jupyter` notebook extensions

Pimp your `jupyter` notebooks with awesome extensions:

```bash
# install nbextensions
jupyter contrib nbextension install --user
jupyter nbextension enable toc2/main
jupyter nbextension enable collapsible_headings/main
jupyter nbextension enable spellchecker/main
jupyter nbextension enable code_prettify/code_prettify
```
## `jupyter` notebook tweaking and check up

### Custom CSS

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

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

### `nbextensions` check up

Perform a sanity check for `jupyter notebooks nbextensions`. Click on `Nbextensions`:

![jupyter_nbextensions.png](images/jupyter_nbextensions.png)

Untick _"disable configuration for nbextensions without explicit compatibility"_ then check that _at least_ all `nbextensions` circled in red are enabled:

![nbextensions.png](images/nbextensions.png)

You can close your web browser then terminate the jupyter server with `CTRL` + `C`.


### Python setup check up

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

Run the following command to check if you successfully installed the required packages:
Expand Down
10 changes: 5 additions & 5 deletions LINUX_keep_current.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ cd $(pyenv root) && git pull
Instala la versión actual de python:

```bash
pyenv install 3.10.6
pyenv install 3.12.9
```

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

```bash
pyenv virtualenv 3.10.6 lewagon_current
pyenv virtualenv 3.12.9 lewagon_current
```

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

``` bash
system
3.10.6
3.10.6/envs/lewagon_current
3.12.9
3.12.9/envs/lewagon_current
3.7.6
3.7.6/envs/lewagon
* lewagon_current
Expand Down Expand Up @@ -277,7 +277,7 @@ sudo service docker stop

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

Ejecuta el comando siguiente para verificar que hayas instalado los paquetes requeridos correctamente:
Expand Down
12 changes: 6 additions & 6 deletions LINUX_keep_current.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ cd $(pyenv root) && git pull
Install the current python version :

```bash
pyenv install 3.10.6
pyenv install 3.12.9
```

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

```bash
pyenv virtualenv 3.10.6 lewagon_current
pyenv virtualenv 3.12.9 lewagon_current
```

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

``` bash
system
3.12.9
3.12.9/envs/lewagon_current
3.10.6
3.10.6/envs/lewagon_current
3.7.6
3.7.6/envs/lewagon
3.10.6/envs/lewagon
* lewagon_current
lewagon
```
Expand Down Expand Up @@ -277,7 +277,7 @@ sudo service docker stop

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

Run the following command to check if you successfully installed the required packages:
Expand Down
10 changes: 5 additions & 5 deletions VM.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -634,19 +634,19 @@ python3-dev
Instala la [última versión estable de Python](https://www.python.org/doc/versions/) que sea aceptada en el currículum de Le Wagon:

```bash
pyenv install 3.10.6
pyenv install 3.12.9
```

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!

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

```bash
pyenv global 3.10.6
pyenv global 3.12.9
exec zsh
```

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).
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).


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

```bash
pyenv virtualenv 3.10.6 lewagon
pyenv virtualenv 3.12.9 lewagon
```

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

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

Ejecuta el comando siguiente para verificar que hayas instalado los paquetes requeridos correctamente:
Expand Down
35 changes: 7 additions & 28 deletions VM.md
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@ python3-dev
Let's install the [latest stable version of Python](https://www.python.org/doc/versions/) supported by Le Wagon's curriculum:

```bash
pyenv install 3.10.6
pyenv install 3.12.9
```

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

```bash
pyenv install 3.10.6
pyenv install 3.12.9
```

If `pyenv` is still not found, contact a teacher.
Expand All @@ -938,11 +938,11 @@ If `pyenv` is still not found, contact a teacher.
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:

```bash
pyenv global 3.10.6
pyenv global 3.12.9
exec zsh
```

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).
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).


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

```bash
pyenv virtualenv 3.10.6 lewagon
pyenv virtualenv 3.12.9 lewagon
```

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


## `jupyter` notebook extensions

Pimp your `jupyter` notebooks with awesome extensions:

```bash
# install nbextensions
jupyter contrib nbextension install --user
jupyter nbextension enable toc2/main
jupyter nbextension enable collapsible_headings/main
jupyter nbextension enable spellchecker/main
jupyter nbextension enable code_prettify/code_prettify
```
## `jupyter` notebook tweaking and check up

### Custom CSS

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

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

### `nbextensions` check up

Perform a sanity check for `jupyter notebooks nbextensions`. Click on `Nbextensions`:

![jupyter_nbextensions.png](images/jupyter_nbextensions.png)

Untick _"disable configuration for nbextensions without explicit compatibility"_ then check that _at least_ all `nbextensions` circled in red are enabled:

![nbextensions.png](images/nbextensions.png)

You can close your web browser then terminate the jupyter server with `CTRL` + `C`.


### Python setup check up

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

Run the following command to check if you successfully installed the required packages:
Expand Down
10 changes: 5 additions & 5 deletions WINDOWS.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -1022,19 +1022,19 @@ python3-dev
Instala la [última versión estable de Python](https://www.python.org/doc/versions/) que sea aceptada en el currículum de Le Wagon:

```bash
pyenv install 3.10.6
pyenv install 3.12.9
```

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!

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

```bash
pyenv global 3.10.6
pyenv global 3.12.9
exec zsh
```

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).
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).


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

```bash
pyenv virtualenv 3.10.6 lewagon
pyenv virtualenv 3.12.9 lewagon
```

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

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

Ejecuta el comando siguiente para verificar que hayas instalado los paquetes requeridos correctamente:
Expand Down
Loading

0 comments on commit 23cf2b5

Please sign in to comment.