Skip to content

Commit

Permalink
Merge pull request #292 from lewagon/pyenv-not-found
Browse files Browse the repository at this point in the history
Troubleshooting pyenv not found
  • Loading branch information
beamishc authored May 19, 2024
2 parents 8f9e270 + de5d733 commit 860718d
Show file tree
Hide file tree
Showing 10 changed files with 142 additions and 2 deletions.
2 changes: 2 additions & 0 deletions LINUX.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ Ya puedes cerrar la aplicación Zoom.

![Foto GitHub](https://github.com/lewagon/setup/blob/master/images/github_picture.png)

:point_right: **[Habilita la Autenticación de Dos Factores (2FA)](https://docs.github.com/en/authentication/securing-your-account-with-two-factor-authentication-2fa/configuring-two-factor-authentication#configuring-two-factor-authentication-using-text-messages)**. GitHub te enviará mensajes de texto con un código cuando intentes iniciar sesión. Esto es importante para la seguridad y también pronto será necesario para contribuir código en GitHub.


## Visual Studio Code

Expand Down
23 changes: 23 additions & 0 deletions LINUX.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ Have you signed up to GitHub? If not, [do it right away](https://github.com/join

![GitHub picture](https://github.com/lewagon/setup/blob/master/images/github_picture.png)

:point_right: **[Enable Two-Factor Authentication (2FA)](https://docs.github.com/en/authentication/securing-your-account-with-two-factor-authentication-2fa/configuring-two-factor-authentication#configuring-two-factor-authentication-using-text-messages)**. GitHub will send you text messages with a code when you try to log in. This is important for security and also will soon be required in order to contribute code on GitHub.


## Visual Studio Code

Expand Down Expand Up @@ -534,6 +536,27 @@ pyenv install 3.10.6

This command might take a while, this is perfectly normal. Don't hesitate to help other students seated next to you!

<details>
<summary>🛠 Troubleshooting `pyenv` not found</summary>

If you encounter an error `Command 'pyenv' not found`: execute the following line:

```bash
source ~/.zprofile
```

Then try to install Python again:

```bash
pyenv install 3.10.6
```

If `pyenv` is still not found, contact a teacher.

</details>
<br>


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
Expand Down
2 changes: 2 additions & 0 deletions VM.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ Lo recomendamos como navegador predeterminado porque es el más compatible con l

![Foto GitHub](https://github.com/lewagon/setup/blob/master/images/github_picture.png)

:point_right: **[Habilita la Autenticación de Dos Factores (2FA)](https://docs.github.com/en/authentication/securing-your-account-with-two-factor-authentication-2fa/configuring-two-factor-authentication#configuring-two-factor-authentication-using-text-messages)**. GitHub te enviará mensajes de texto con un código cuando intentes iniciar sesión. Esto es importante para la seguridad y también pronto será necesario para contribuir código en GitHub.




Expand Down
23 changes: 23 additions & 0 deletions VM.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ Have you signed up to GitHub? If not, [do it right away](https://github.com/join

![GitHub picture](https://github.com/lewagon/setup/blob/master/images/github_picture.png)

:point_right: **[Enable Two-Factor Authentication (2FA)](https://docs.github.com/en/authentication/securing-your-account-with-two-factor-authentication-2fa/configuring-two-factor-authentication#configuring-two-factor-authentication-using-text-messages)**. GitHub will send you text messages with a code when you try to log in. This is important for security and also will soon be required in order to contribute code on GitHub.


## SSH key

Expand Down Expand Up @@ -895,6 +897,27 @@ pyenv install 3.10.6
This command might take a while, this is perfectly normal. Don't hesitate to help other students seated next to you!

<details>
<summary>🛠 Troubleshooting `pyenv` not found</summary>

If you encounter an error `Command 'pyenv' not found`: execute the following line:

```bash
source ~/.zprofile
```

Then try to install Python again:

```bash
pyenv install 3.10.6
```

If `pyenv` is still not found, contact a teacher.

</details>
<br>


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
Expand Down
2 changes: 2 additions & 0 deletions WINDOWS.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ Ya puedes cerrar la aplicación Zoom.

![Foto GitHub](https://github.com/lewagon/setup/blob/master/images/github_picture.png)

:point_right: **[Habilita la Autenticación de Dos Factores (2FA)](https://docs.github.com/en/authentication/securing-your-account-with-two-factor-authentication-2fa/configuring-two-factor-authentication#configuring-two-factor-authentication-using-text-messages)**. GitHub te enviará mensajes de texto con un código cuando intentes iniciar sesión. Esto es importante para la seguridad y también pronto será necesario para contribuir código en GitHub.


## La versión de Windows

Expand Down
23 changes: 23 additions & 0 deletions WINDOWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ Have you signed up to GitHub? If not, [do it right away](https://github.com/join

![GitHub picture](https://github.com/lewagon/setup/blob/master/images/github_picture.png)

:point_right: **[Enable Two-Factor Authentication (2FA)](https://docs.github.com/en/authentication/securing-your-account-with-two-factor-authentication-2fa/configuring-two-factor-authentication#configuring-two-factor-authentication-using-text-messages)**. GitHub will send you text messages with a code when you try to log in. This is important for security and also will soon be required in order to contribute code on GitHub.


## Windows version

Expand Down Expand Up @@ -1085,6 +1087,27 @@ pyenv install 3.10.6

This command might take a while, this is perfectly normal. Don't hesitate to help other students seated next to you!

<details>
<summary>🛠 Troubleshooting `pyenv` not found</summary>

If you encounter an error `Command 'pyenv' not found`: execute the following line:

```bash
source ~/.zprofile
```

Then try to install Python again:

```bash
pyenv install 3.10.6
```

If `pyenv` is still not found, contact a teacher.

</details>
<br>


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
Expand Down
22 changes: 21 additions & 1 deletion _partials/osx_python.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,27 @@ pyenv install <PYTHON_VERSION>
This command might take a while, this is perfectly normal. Don't hesitate to help other students seated next to you!

<details>
<summary>🛠 Troubleshooting</summary>
<summary>🛠 Troubleshooting `pyenv` not found</summary>

If you encounter an error `Command 'pyenv' not found`: execute the following line:

```bash
source ~/.zprofile
```

Then try to install Python again:

```bash
pyenv install <PYTHON_VERSION>
```

If `pyenv` is still not found, contact a teacher.

</details>


<details>
<summary>🛠 Troubleshooting `zlib`</summary>

If you encounter an error installing Python with `pyenv` about `zlib`:

Expand Down
21 changes: 21 additions & 0 deletions _partials/ubuntu_python.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,27 @@ pyenv install <PYTHON_VERSION>

This command might take a while, this is perfectly normal. Don't hesitate to help other students seated next to you!

<details>
<summary>🛠 Troubleshooting `pyenv` not found</summary>

If you encounter an error `Command 'pyenv' not found`: execute the following line:

```bash
source ~/.zprofile
```

Then try to install Python again:

```bash
pyenv install <PYTHON_VERSION>
```

If `pyenv` is still not found, contact a teacher.

</details>
<br>


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
Expand Down
2 changes: 2 additions & 0 deletions macOS.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ Ya puedes cerrar la aplicación Zoom.

![Foto GitHub](https://github.com/lewagon/setup/blob/master/images/github_picture.png)

:point_right: **[Habilita la Autenticación de Dos Factores (2FA)](https://docs.github.com/en/authentication/securing-your-account-with-two-factor-authentication-2fa/configuring-two-factor-authentication#configuring-two-factor-authentication-using-text-messages)**. GitHub te enviará mensajes de texto con un código cuando intentes iniciar sesión. Esto es importante para la seguridad y también pronto será necesario para contribuir código en GitHub.


## Chips Apple Silicon

Expand Down
24 changes: 23 additions & 1 deletion macOS.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ Have you signed up to GitHub? If not, [do it right away](https://github.com/join

![GitHub picture](https://github.com/lewagon/setup/blob/master/images/github_picture.png)

:point_right: **[Enable Two-Factor Authentication (2FA)](https://docs.github.com/en/authentication/securing-your-account-with-two-factor-authentication-2fa/configuring-two-factor-authentication#configuring-two-factor-authentication-using-text-messages)**. GitHub will send you text messages with a code when you try to log in. This is important for security and also will soon be required in order to contribute code on GitHub.


## Apple Silicon Chips

Expand Down Expand Up @@ -594,7 +596,27 @@ pyenv install 3.10.6
This command might take a while, this is perfectly normal. Don't hesitate to help other students seated next to you!

<details>
<summary>🛠 Troubleshooting</summary>
<summary>🛠 Troubleshooting `pyenv` not found</summary>

If you encounter an error `Command 'pyenv' not found`: execute the following line:

```bash
source ~/.zprofile
```

Then try to install Python again:

```bash
pyenv install 3.10.6
```

If `pyenv` is still not found, contact a teacher.

</details>


<details>
<summary>🛠 Troubleshooting `zlib`</summary>

If you encounter an error installing Python with `pyenv` about `zlib`:

Expand Down

0 comments on commit 860718d

Please sign in to comment.