Skip to content Skip to sidebar Skip to footer

Python 2.7 - Requirement.parse('six>=1.6.0'))

Python ... why does this happen? All of a sudden I get this error: Traceback (most recent call last): File 'setup.py', line 36, in zip_safe=False) File '/us

Solution 1:

The setup file requires you to have a version of the six module greater than 1.6.0 but you had version 1.5.2 installed, so it raises a VersionConflict exception. When you install the appropriate version of six, it runs correctly because you've met all of the versioning requirements in your setup.py file.


Post a Comment for "Python 2.7 - Requirement.parse('six>=1.6.0'))"