Python Home

From UVOO Tech Wiki
Revision as of 02:18, 24 February 2020 by Busk (talk | contribs) (Created page with "# Getting Started Prep python virtual environment. ``` sudo apt-get install python3-venv mkdir app cd app python3 -m venv venv source venv/bin/activate pip install --upgrade...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Getting Started

Prep python virtual environment.

sudo apt-get install python3-venv
mkdir app
cd app
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip wheel