Skip to content

This repository hosts my team's submission for IEEEXtreme 13.0 edition

Notifications You must be signed in to change notification settings

Marantesss/ieeextreme-13.0

Repository files navigation

IEEEXtreme 13.0

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.

Authors

Pyhton Stuff

Creating virtual environments

Pyhton 3.6 and above

venv comes built in with Python3.6 and above

python3 -m venv env # env -> environment name

Python 3.5 and below

pip install virtualenv
virtualenv env

Using virtual environments

Ligate

source env/bin/activate

Desligate

deactivate

How to use requirement files:

Export

pip freeze > requirements.txt

Import

pip install -r requirements.txt

About

This repository hosts my team's submission for IEEEXtreme 13.0 edition

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published