This repository contains a Python program that simulates a realistic ICPC contest.
The program requires several external libraries. To install them, run the following command in your terminal:
sudo pip3 install -r requirements.txt
This command will download and install all the necessary libraries listed in the requirements.txt
file.
- Create a virtual environment:
virtualenv venv
This creates a virtual environment named venv
in your current directory. It isolates project dependencies from your system-wide Python installation, ensuring compatibility and avoiding conflicts.
- Activate the virtual environment:
. venv/bin/activate
This activates the virtual environment, making venv
the active environment. Packages installed within it will be isolated from your system-wide Python.
When you're finished working on the project, you can deactivate the virtual environment to return to your system-wide Python installation:
deactivate
We welcome contributions to this project! If you have any ideas or improvements, please feel free to create a pull request.
adding new madules in requirements.txt
:
pip3 freeze > requirements.txt
This project is licensed under the MIT License. Please see the LICENSE file for more details.