Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 898 Bytes

installation.md

File metadata and controls

42 lines (29 loc) · 898 Bytes

Installation instructions

To install ML-fairness-gym:

git clone https://github.com/google/ml-fairness-gym
cd ml-fairness-gym
virtualenv -p python3 .
source ./bin/activate
pip install -r requirements.txt

Note that ML-fairness-gym should only be run with python 3.

Run the following command to add ml-fairness-gym to your PYTHONPATH.

export PYTHONPATH="${PYTHONPATH}:/path/to/ml-fairness-gym"

To check that everything installed correctly, you can run:

./tests.sh

Troubleshooting

If pip is not installed. Follow instructions to install it.

If virtualenv is not installed, you can install it with apt-get.

sudo apt-get install virtualenv

If you get an error: "ModuleNotFoundError: No module named 'tkinter'", you may need to install tkinter.

sudo apt-get install python3-tk