Python 3 Virtualenv
image: python:3.9
try:
script:
- printenv | sort
- apt-get update
- apt-get install -y virtualenv
- virtualenv -p python3 venv
- source venv/bin/activate
- pip install flask
- python --version
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
image: python:3.9
try:
script:
- printenv | sort
- apt-get update
- apt-get install -y virtualenv
- virtualenv -p python3 venv
- source venv/bin/activate
- pip install flask
- python --version