cognitect-labs / transducers-python

Apache License 2.0
201 stars 8 forks source link

Anaconda's pip not finding 'transducers' #2

Open rebcabin opened 7 years ago

rebcabin commented 7 years ago

I had transducers working on Python 2.7.13 on Mac El Capitan, but was forced to move to Anaconda 1.6.0 with Python 3 for collaboration.

I get this

$ ~/anaconda/bin/pip install --use-wheel --pre transducers

Collecting transducers Could not find a version that satisfies the requirement transducers (from versions: ) No matching distribution found for transducers

No idea how to proceed.

Here are some details:

$ ~/anaconda/bin/pip --version

pip 9.0.1 from /Users/xxxxxx/anaconda/lib/python3.6/site-packages (python 3.6)

$ which python

/Users/xxxxxx/anaconda/bin/python

$ python --version

Python 3.6.0 :: Anaconda 4.3.0 (x86_64)

rebcabin commented 7 years ago

to work around, I cloned this repo, then did

python ./setup.py install

in my repo's directory. I'll leave this issue open because I think you intend conda install transducers to work without having to send users looking for this more primitive method of installation (though it may be common knowledge --- I'm kinda new to Python).