datasets
datasets copied to clipboard
"No module named datasets" after installing
After going through the steps mentioned in #134 and running python setup.py install I get the following output:
$ python setup.py install
running install
running bdist_egg
running egg_info
writing requirements to datasets.egg-info/requires.txt
writing datasets.egg-info/PKG-INFO
writing top-level names to datasets.egg-info/top_level.txt
writing dependency_links to datasets.egg-info/dependency_links.txt
writing entry points to datasets.egg-info/entry_points.txt
reading manifest file 'datasets.egg-info/SOURCES.txt'
writing manifest file 'datasets.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
warning: install_lib: 'build/lib.linux-x86_64-2.7' does not exist -- no Python modules to install
creating build/bdist.linux-x86_64/egg
creating build/bdist.linux-x86_64/egg/EGG-INFO
copying datasets.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
copying datasets.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying datasets.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying datasets.egg-info/entry_points.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying datasets.egg-info/requires.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying datasets.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
zip_safe flag not set; analyzing archive contents...
creating 'dist/datasets-0.0.9-py2.7.egg' and adding 'build/bdist.linux-x86_64/egg' to it
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing datasets-0.0.9-py2.7.egg
Copying datasets-0.0.9-py2.7.egg to /home/jabalazs/Envs/test/lib/python2.7/site-packages
Adding datasets 0.0.9 to easy-install.pth file
Installing sample script to /home/jabalazs/Envs/test/bin
Installed /home/jabalazs/Envs/test/lib/python2.7/site-packages/datasets-0.0.9-py2.7.egg
Processing dependencies for datasets==0.0.9
Finished processing dependencies for datasets==0.0.9
But when I try to import the package I get the following error:
>>> import datasets
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named datasets
Even after trying to add the installed package to the Python path, as suggested here I get the same error.
Do you have any suggestions for solving this?
Thanks!