(Optional) To get coding immediately without all the hassle of setup, go to Repl.it and Fork this starter!! Repl.it lets you code in the browser with an online IDE with friends!
Skip this if you already have Python3 setup on your computer!
Run commands
in terminal. Open terminal by:
- Windows: Type cmd into the search bar
- MacOS: Type terminal in Spotlight Search
- Linux: Use
Ctrl
+Alt
+T
- Installing Python3
- Installing
venv
:pip install virtualenv
Recommended: Install Git
git clone https://github.com/vhhacks/flask-starter
or click Code > Download ZIP- If you downloaded the zip, you have to extract the zip file.
cd flask-starter
python3 -m venv venv
- Activate venv
- Windows:
.\venv\Scripts\activate
- Unix/MacOS:
source venv/bin/activate
- Windows:
pip install -r requirements.txt