You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>>> import sys
>>> sys.path.insert(0, "pydoop-1.2.0-py2.7.egg")
>>> import pydoop
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "build/bdist.linux-x86_64/egg/pydoop/__init__.py", line 194, in <module>
File "build/bdist.linux-x86_64/egg/pydoop/__init__.py", line 179, in read_properties
IOError: [Errno 20] Not a directory: '/tmp/templib/pydoop-1.2.0-py2.7.egg/pydoop/pydoop.properties'
Tested with Pydoop 1.2.0, need to check if this also affects the current development branch. We could copy properties to a Python module as part of the installation process to avoid this.
The text was updated successfully, but these errors were encountered:
Looks like it would break anyway when trying to import extension modules, see #273. Although http://peak.telecommunity.com/DevCenter/PythonEggs says it should be possible to make it work (together with pkg_resources), my attempts were unsuccessful. If we leave like this, at least we should add zip_safe=False to the setup function.
Tested with Pydoop 1.2.0, need to check if this also affects the current development branch. We could copy properties to a Python module as part of the installation process to avoid this.
The text was updated successfully, but these errors were encountered: