ZeevG / python-forecast.io

A thin Python Wrapper for the Dark Sky (formerly forecast.io) weather API
http://zeevgilovitz.com/python-forecast.io/
Other
423 stars 88 forks source link

Pip install not working #43

Closed dharamsk closed 8 years ago

dharamsk commented 8 years ago

Hey,

This is super useful and I love it. Had to install manually as pip install couldn't find a matching package. When I searched for it, it recommended python-forcastio (<--that's not a typo), but said there was no matching version for pypi to install.

dharamsk commented 8 years ago

work around for running on remote server: export PYTHONPATH=$PYTHONPATH:/home/[insert-your-user-name-here]/.local/lib/python2.7/site-packages/ python setup.py install --user (must run from within directory of the module)

ZeevG commented 8 years ago

Hey, thanks for reporting this. How did you try to install the package and what version of Python were you using?

dharamsk commented 8 years ago

Python 2.7.10

Tried: "pip install forecastio" - not found "pip install python-forcastio" - no matching version found

MacBook-Pro:analyst_bot dharamkhalsa$ pip install forecastio Collecting forecastio Could not find a version that satisfies the requirement forecastio (from versions: ) No matching distribution found for forecastio

Dharam Khalsa

On Fri, Mar 4, 2016 at 5:56 PM, ZeevG notifications@github.com wrote:

Hey, thanks for reporting this. How did you try to install the package and what version of Python were you using?

— Reply to this email directly or view it on GitHub https://github.com/ZeevG/python-forecast.io/issues/43#issuecomment-192549433 .

dharamsk commented 8 years ago

Zeev - this was user error. For whatever reason I never tried pip install python-forecastio, which works.

Wishing I had never installed conda :/ finding more and more reasons not to use it.