kayzhu / LSHash

A fast Python implementation of locality sensitive hashing.
MIT License
660 stars 158 forks source link

pip install fails #4

Open chanansh opened 10 years ago

chanansh commented 10 years ago

c:\Python33\Scripts>pip install lshash Downloading/unpacking lshash Could not find a version that satisfies the requirement lshash (from versions: 0.0.2dev, 0.0.3dev, 0.0.4dev) Cleaning up... No distributions matching the version for lshash Storing complete log in C:\Users\t-hanans\pip\pip.log

rdooley commented 10 years ago

You need to specify a version explicitly as the only versions available are development versions.

E.g.

❯ pip install lshash==0.0.4dev
Downloading/unpacking lshash==0.0.4dev Downloading lshash-0.0.4dev.tar.gz Running setup.py egg_info for package lshash

Installing collected packages: lshash Running setup.py install for lshash

Successfully installed lshash Cleaning up...

primoz-k commented 9 years ago

It would be cool if this info was in README.rst