python-bloomfilter icon indicating copy to clipboard operation
python-bloomfilter copied to clipboard

Is this available on python3?

Open derrandz opened this issue 8 years ago • 5 comments

derrandz avatar Jun 17 '16 16:06 derrandz

Seems like it isn't. I'm forking now; maybe I'll update it for Py3 and submit to PyPI this weekend

gwerbin avatar Jun 21 '16 21:06 gwerbin

Actually it is available on Py3, but the PyPI version is out of date. You can install with pip3 install git+https://github.com/jaybaird/python-bloomfilter/

gwerbin avatar Jun 21 '16 21:06 gwerbin

@gwerbin Hi, I tried to install on Py3 with the way you said. But I got an error when try to install the bitarray module: d:\python36-32\include\pyconfig.h(222): fatal error C1083: Cannot open include file: 'basetsd.h': No such file or directory
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\cl.exe' failed with exit status 2 perhaps the bitarray module is not available on Py3??

chrislinan avatar May 06 '17 11:05 chrislinan

It should have no problem when installing from pip3. I just tried it out, it worksfor me.

@chrislinan, why don't you try:

pip3 install pybloom_live

?

joseph-fox avatar May 06 '17 11:05 joseph-fox

pip3 install pybloom_live works for me. And you need to from pybloom_live import BloomFilter

ybdesire avatar May 30 '17 03:05 ybdesire