IEEEXtreme is a global challenge in which teams of IEEE Student members – advised and proctored by an IEEE member, and often supported by an IEEE Student Branch – compete in a 24-hour time span against each other to solve a set of programming problems.
- Gonçalo Marantes - Marantesss
- Beatriz Garrido - bgarrido7
- Cajó Alburquerque - CajoAlbuquerque
venv comes built in with Python3.6 and above
python3 -m venv env # env -> environment name
pip install virtualenv
virtualenv env
source env/bin/activate
deactivate
pip freeze > requirements.txt
pip install -r requirements.txt