Python Home

From UVOO Tech Wiki
Revision as of 17:43, 4 August 2020 by Busk (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Python Install Methods

Python Examples

or the easier way

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