- Install Python 3 and the development packages
sudo yum install python3 python3-devel
- Install the package manager for Python 3
sudo yum install python3-setuptools python3-pip
- Modify
setup.pyto work for us.
- Change
os.walk(LOCALE_PATH).next()tonext(os.walk(LOCALE_PATH))on line 123
- Install MouseTrap using pip
sudo python3 -m pip install .- This call
pipunder Python 3 and installs the package located in the current directory.