Apuntes_Python/01_curso/Modulo_1/1-4c_entorno_virtual.py

23 lines
646 B
Python
Raw Normal View History

2022-12-24 22:41:20 -03:00
print("""
# Crear Entorno Virtual 'tutorial-env'
> $ python3 -m venv tutorial-env
# Activar Entorno Virtual 'tutorial-en'
> $ source tutorial-env/bin/activate
(tutorial-env)
(jpav)(/Coursera1/modulo4)
> $ py
Python 3.8.2 (default, Apr 27 2020, 15:53:34)
[GCC 9.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
import sys
sys.path
['',
'/usr/lib/python38.zip', '/usr/lib/python3.8',
'/usr/lib/python3.8/lib-dynload',
'/Coursera1/modulo4/tutorial-env/lib/python3.8/site-packages'
]
""")