Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanchewy committed Oct 28, 2020
2 parents 4f89ba2 + 42aeddb commit 59016a2
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,25 @@ Online Python 3.6 Programming with Live Pylint Syntax Checking!
```
source venv/bin/activate
```
4) Pipe requirements to venv folder:
4) Enusre that your virtualenv uses Python 3.6.9 via this command:
```
python --version
```
If you don't use Python 3.6.9, some Python libraries that PythonBuddy relies on may not work. Please refer to this documentation for figuring out how to create a specific version of Python via vitualenv via this StackOverflow [post](https://stackoverflow.com/a/39713544).

5) Pipe requirements to venv folder:
```
pip install -r requirements.txt
```
5) Change to the PythonBuddy application folder. You should now be in `PythonBuddy/PythonBuddy/`.
6) Change to the PythonBuddy application folder. You should now be in `PythonBuddy/PythonBuddy/`.
```
cd PythonBuddy
```
6) Set FLASK_APP variable:
7) Set FLASK_APP variable:
```
export FLASK_APP=app.py
```
7) Run flask app:
8) Run flask app:
```
flask run
```
Expand Down

0 comments on commit 59016a2

Please sign in to comment.