I\'m trying to install version 1.2.2 of the MySQL_python adaptor, using a fresh virtualenv created with the --no-site-packages option. The current version shown
--no-site-packages
You can even use a version range with pip install command. Something like this:
pip install
pip install 'stevedore>=1.3.0,<1.4.0'
And if the package is already installed and you want to downgrade it add --force-reinstall like this:
--force-reinstall
pip install 'stevedore>=1.3.0,<1.4.0' --force-reinstall