I try to install PyTables package using easy_install.
My problem is that I am not root on the system and am not allowed to write to /usr/local/lib/python2.7/dist-packages/
directory.
To solve this problem I decided to install locally. For that I have created a new directory: /home/myname/mylibs
. Then I executed easy_install -d /home/myname/mylibs tables
. As a result easy_install
complained about the PYTHONPATH environment variable. To resolve this problem I added my new directory to the PYTHONPATH and repeated the previous command. As a result I get syte.py
and syte.pyc
file in my /home/myname/mylibs
directory.
However, when I try import tables
from Python it still does not work. What also worries me is that the new files do not have "table" in their names as well in their content.
Can anybody, please, explain me what is going on?