Closed certik closed 8 years ago
The problem is that the default install creates the following directory structure in lib/python2.7/site-packages:
fabfile fabric Fabric-1.10.2-py2.7.egg-info tests
The previous workaround created this structure:
Fabric-1.10.2-py2.7.egg site.py site.pyc
Which causes the 'fabric' module not to be found in Hashdist. The new workaround creates the following structure:
fabfile fabric Fabric-1.10.2-py2.7.egg-info
Now everything works as expected.
+1
Thanks. The failure seems unrelated.
The problem is that the default install creates the following directory structure in lib/python2.7/site-packages:
fabfile fabric Fabric-1.10.2-py2.7.egg-info tests
The previous workaround created this structure:
Fabric-1.10.2-py2.7.egg site.py site.pyc
Which causes the 'fabric' module not to be found in Hashdist. The new workaround creates the following structure:
fabfile fabric Fabric-1.10.2-py2.7.egg-info
Now everything works as expected.