Saltar al contenido

agregar la variable de entorno de Python, ejemplo de código de Windows 10

Basta ya de indagar por todo internet porque llegaste al lugar perfecto, contamos con la solución que necesitas encontrar sin problema.

Ejemplo 1: crear entorno python windows 10

python3 -m venv venv

Ejemplo 2: agregar Python a la ruta de Windows 10

To add Python to the Windows Path, follow these steps:

1. Start the Run box and enter sysdm.cpl
2. In the System Properties window go to the Advanced tab and 
   click the Environment Variables button
3. In the System variable window, find the Path variable and 
   click Edit
4. Position your cursor at the end of the Variable value line 
   and add the path to the python.exe file, preceeded with 
   the semicolon character (;)

Ejemplo 3: ruta de Python al ejecutable de Python

>>>import sys
>>> print(sys.executable)
C:pathtopython.exe

Ejemplo 4: editar la variable de ruta usando Python

app_path = os.path.join(root_path, 'other', 'dir', 'to', 'app')
os.environ["PATH"]+= os.pathsep + app_path

Ejemplo 5: Python establece la variable de entorno de Windows

os.environ['API_PASSWORD']='secret'

Ejemplo 6: agregar Python a la ruta de Windows 10

Either manually change it by doing the steps for the answer by skilliboi.

Or you can reinstall python and when you do that, make sure to tick the box that says:
Add python to PATH(or something like that)

Si te ha resultado de ayuda este artículo, agradeceríamos que lo compartas con otros programadores y nos ayudes a dar difusión a nuestro contenido.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *