-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pycricket_storagehandler does not get installed #1
Comments
Can you try with the following code, import pycricket |
The import itself fails: (pycricket)kunal@hydrogen:~/work/my_work/python/pycricket$ python
Python 2.7.3 (default, Jun 22 2015, 19:33:41)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pycricket
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/kunal/work/my_work/python/pycricket/local/lib/python2.7/site-packages/pycricket.py", line 26, in <module>
from pycricket_storagehandler import *
ImportError: No module named pycricket_storagehandler
>>> |
I installed pycricket using pip from github: (pycricket)kunal@hydrogen:~/work/my_work/python/pycricket$ pip install git+https://github.com/roanuz/py-cricket#egg=pycricket Cannot install with simple |
Yes, there is mistake in setup.py file. I will make sure, its fixed soon. Could you please tell me what error you are getting when you try to install 'pip install py-cricket' |
whoops, it seems to be working now. Just tried For some reason it didn't work last night :( |
Nice 👍 |
pycricket.py imports pycricket_storagehandler, but setup.py does not install pycricket_storagehandler.py
That line in setup.py should read as:
The text was updated successfully, but these errors were encountered: