GetStream / stream-python

Python Client - Build Activity Feeds & Streams with GetStream.io
https://getstream.io
BSD 3-Clause "New" or "Revised" License
141 stars 41 forks source link

Failing to pip install #19

Closed mmautner closed 9 years ago

mmautner commented 9 years ago

The httpsig dependency is failing to install because it's 404ing on PyPI, which means stream-python fails to install. Just wanted to make you guys aware:

$ pip install stream-python
Downloading/unpacking stream-python
  Downloading stream-python-2.2.1.tar.gz
  Running setup.py egg_info for package stream-python

Downloading/unpacking requests>=2.3.0 (from stream-python)
  Downloading requests-2.7.0.tar.gz (451kB): 451kB downloaded
  Running setup.py egg_info for package requests

Downloading/unpacking six>=1.8.0 (from stream-python)
  Downloading six-1.9.0.tar.gz
  Running setup.py egg_info for package six

    no previously-included directories found matching 'documentation/_build'
Downloading/unpacking httpsig==1.1.0 (from stream-python)
  Could not find any downloads that satisfy the requirement httpsig==1.1.0 (from stream-python)
Cleaning up...
No distributions at all found for httpsig==1.1.0 (from stream-python)
Storing complete log in /Users/max/.pip/pip.log

Mentioned here: ahknight/httpsig#5

kenara commented 9 years ago

Changing line 33 of setup.py from: 'httpsig==1.1.0' to: 'httpsig>=1.1.0' worked for me

mmautner commented 9 years ago

Updating my version of pip worked for me:

https://github.com/ahknight/httpsig/issues/5#issuecomment-108527696