crypto_compare
crypto_compare copied to clipboard
Issues with installlation
Hello,
Nice work so far. Whilst installing the lib, I encountered few issues.
First the command used to install on your readme.md
and readme.rst
was
pip install crypto_compare
Well, that doesn't work. So looking at the lib on https://pypi.python.org/pypi/crypto-compare/0.0.1 , it's clearly different.
The right command then should be:
pip install crypto-compare
Running that command, I received this error
Collecting crypto-compare
Downloading crypto_compare-0.0.1-py2-none-any.whl
Collecting urllib2 (from crypto-compare)
Could not find a version that satisfies the requirement urllib2 (from crypto-compare) (from versions: )
No matching distribution found for urllib2 (from crypto-compare)
I'm running it on a MacOS Sierra
Any help?
@mohataher I have actually tried it once but it's not working. I would suggest instead you can download the source and use it, I am not able to work on this one right now :(
@mohataher @ParthBarot-BoTreeConsulting Download the source code and remove urllib2
in install_requires solved my problem.
But be aware that this may not be the best solution because I didn't review all the source code.
BTW, I found the pytest
dependency in requiements is only needed in test cases, so basically there is no dependency at all for this project to get installed and work.