Difference between revisions of "Python Home"
Jump to navigation
Jump to search
(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...") |
|||
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | [[ Python Install Methods ]] | ||
+ | |||
+ | [[ Python Examples ]] | ||
+ | |||
+ | |||
+ | |||
+ | or the easier way | ||
+ | |||
# Getting Started | # Getting Started | ||
Latest revision as of 17:43, 4 August 2020
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