-
Notifications
You must be signed in to change notification settings - Fork 0
Home
TriTech edited this page Feb 28, 2025
·
6 revisions
- CoreBench is a program developed by TriTech that aims to determine the performance of your system with real-world simulations and calculations.
- It is designed for use on Linux-based systems primarily, as on Windows and other untested operating systems there may be many conflicts that make it completely impractical and non-representative of true performance.
CoreBench has dependencies, all listed within requirements.txt
You can install these with:
pip install -r requirements.txt
In the case of encountering an error with externally managed environment
make a new virtual environment, or install with sudo. I recommend making a virtual environment because it can prevent conflicts with other applications.
sudo apt install python3-venv
Then create the venv...
python -m venv CoreBench
Activate...
source CoreBench/bin/activate
Install the packages...
pip install -r requirements.txt
And start benchmarking!
python3 corebench.py
To deactivate, just run
deactivate
mind. blown.