-
[optional] install Virtual Python Environment builder
pip install virtualenv
-
Create your virtual environment
virtualenv -p python3 <environment_name> virtualenv -p python3 venv
-
Finally, activate it
source ./venv/bin/activate
On activation, your terminal should now start with (venv)
-
Make sure lists are installed, python version is 3.8
pip list python -V
In a virtual environment with python 3.8
pip install -r requirements.txt
Make sure you have access to the submodule repo
git submodule update --init --recursive
Make sure the virtual environment is activated
python run.py
-
When you try to upload a submissions file to the api, you'll be prompted to enter your password because the grader requires sudo access
-
If you got :
SyntaxError: Non-ASCII character '\xe2' in file
just add
# -*- coding: utf-8 -*-
to the top ofconsole_log_parser.py
file