Skip to content

Instantly share code, notes, and snippets.

@kevin-brown
Last active August 29, 2015 14:07
Show Gist options
  • Save kevin-brown/e52865f0641f04aa2e68 to your computer and use it in GitHub Desktop.
Save kevin-brown/e52865f0641f04aa2e68 to your computer and use it in GitHub Desktop.
MouseTrap instructions
  1. Install Python 3 and the development packages
  • sudo yum install python3 python3-devel
  1. Install the package manager for Python 3
  • sudo yum install python3-setuptools python3-pip
  1. Modify setup.py to work for us.
  • Change os.walk(LOCALE_PATH).next() to next(os.walk(LOCALE_PATH)) on line 123
  1. Install MouseTrap using pip
  • sudo python3 -m pip install .
  • This call pip under Python 3 and installs the package located in the current directory.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment