femtotrader / pandas_talib

A Python Pandas implementation of technical analysis indicators
MIT License
737 stars 195 forks source link

pip install pandas_talib not working #13

Open timkofu opened 8 years ago

timkofu commented 8 years ago

Here is the log:

$pip install pandas_talib 
Collecting pandas-talib
  Could not find a version that satisfies the requirement pandas-talib (from versions: )
No matching distribution found for pandas-talib
femtotrader commented 8 years ago

PyPi version was published. https://pypi.python.org/pypi/pandas_talib/0.0.1

I don't know what is going on.

Anyway as it's a "work in progress", I suggest to git clone and run

python setup.py install

An other option is to

sudo pip install git+https://github.com/femtotrader/pandas_talib.git
ghost commented 8 years ago

also for me pip install pandas_talib is not working!!

xgdgsc commented 7 years ago

Seems threre is only metadata, you need to upload the source tarball generated with python setup.py sdist , or just run python setup.py sdist upload .

mellertson commented 7 years ago

I had the same problem, but per @femtotrader's suggestion, running sudo pip install git+https://github.com/femtotrader/pandas_talib.git installed it successfully.