-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Addition of installation of cpp and python.
- Loading branch information
Showing
5 changed files
with
76 additions
and
12 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,33 @@ | ||
# Instalación de C++ Tools | ||
|
||
Hola. | ||
Python es un lenguaje de programación muy versátil y flexible, no obstante está construído sobre C y C++ en su núcleo. Por ello, es necesario instalar las herramientas de desarrollo de C++ para poder compilar y ejecutar programas escritos en C++ y evitar posibles errores en la instalación de paquetes de Python que requieran compilación. | ||
|
||
```{note} | ||
Este paso no es absolutamente necesario, pero es recomendable para tener un entorno de desarrollo más completo. | ||
``` | ||
|
||
## Instalación en Windows | ||
|
||
Para instalar las herramientas de desarrollo de C++ en Windows, sigue los siguientes pasos: | ||
|
||
1. Abre el navegador y accede a la página de descarga de [Visual Studio - Build Tools](https://visualstudio.microsoft.com/downloads/?q=build+tools). | ||
2. Descarga el instalador de Visual Studio Build Tools y ejecútalo. Asegúrate de seleccionar la opción de instalar las herramientas de desarrollo de C++. | ||
|
||
<img src="../../_static/images/tema_01/cpp_tools_install.png"/> | ||
|
||
1. Espera a que finalice la instalación y reinicia tu computadora. | ||
2. Abre una terminal *(busca cmd en windows o usa `win + r`, escribe `cmd` y pulsa `enter`)* y ejecuta el siguiente comando para verificar que las herramientas de C++ se hayan instalado correctamente: | ||
|
||
```cmd | ||
g++ --version | ||
``` | ||
|
||
Si todo ha ido bien, deberías ver la versión del compilador de C++ que se ha instalado. | ||
|
||
<!-- Código que no es copiable --> | ||
```cmd | ||
g++ (Rev3, Built by MSYS2 project) 14.1.0 | ||
Copyright (C) 2024 Free Software Foundation, Inc. | ||
This is free software; see the source for copying conditions. | ||
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,47 @@ | ||
# Instalación y configuración de Python | ||
|
||
Hola. | ||
Python es un lenguaje de programación muy versátil y flexible, que se ha convertido en uno de los más populares en actualidad. | ||
|
||
```{warning} | ||
Ten cuidado con los errores comunes en este tema. | ||
```{note} | ||
Python es un lenguaje de programación de alto nivel, interpretado y orientado a objetos. Fue creado por Guido van Rossum y lanzado por primera vez en 1991. | ||
``` | ||
|
||
```py | ||
# Ejemplo de código en main | ||
## Instalación de Python en Windows | ||
|
||
def main() -> None: | ||
saludo: str = "Hola, algoritmos!" | ||
print(saludo) | ||
Para instalar Python en tu computadora, sigue los siguientes pasos: | ||
|
||
1. Abre el navegador y accede a la página de descarga de [Python Windows](https://www.python.org/downloads/windows/). | ||
2. Descarga el instalador de Python y ejecútalo *(puedes descargar más de una versión e instalarlas paulatinamente)*. | ||
<img src='../../_static/images/tema_01/py-vers.png.jpg'></img> | ||
3. Asegúrate de seleccionar la opción de **Add Python to PATH**. | ||
4. Haz clic en "Install Now" y espera a que finalice la instalación. | ||
5. Abre una terminal *(busca cmd en Windows o usa `win + r`, escribe `cmd` y pulsa `enter`)* y ejecuta el siguiente comando para validar todas las versiones de Python que se hayan instalado en tu computadora: | ||
|
||
if __name__ == "__main__": | ||
main() | ||
::::{grid} 1 1 2 2 | ||
:gutter: 3 | ||
|
||
:::{grid-item-card} | ||
|
||
```cmd | ||
py -0p | ||
``` | ||
|
||
::: | ||
|
||
:::{grid-item-card} | ||
|
||
```cmd | ||
-V:3.12 * C:\Program Files\Python312\python.exe | ||
-V:3.11 C:\Program Files\Python311\python.exe | ||
-V:3.9 C:\Program Files\WindowsApps\...\python3.9.exe | ||
-V:3.7 C:\Program Files\WindowsApps\...\python.exe | ||
``` | ||
|
||
::: | ||
|
||
:::: | ||
|
||
|
||
```{tip} | ||
Si eres usuario Windows es posible instalar Python a través de la Microsoft Store, para ello busca Python en la tienda (en la versión deseada) y sigue los pasos de instalación. | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters