23 lines
646 B
Python
23 lines
646 B
Python
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'
|
|
]
|
|
""")
|