I'm having trouble installing the python talib
package on a linux system (Linux 2.6.32-431.17.1.el6.x86_64
). See https://github.com/mrjbq7/ta-lib
.
What I did so far:
brew install ta-lib
(Dependency)- This worked fine. If I rerun this command I see
Warning: ta-lib-0.4.0 already installed
- This worked fine. If I rerun this command I see
pip install ta-lib
- when running this, I get the following error:
error: command /home/username/.linuxbrew/bin/gcc' failed with exit status 1
- when running this, I get the following error:
I don't have sudo
privileges on this machine, so I suspect this might be a problem. I also tried
pip install --user ta-lib
and
wget https://github.com/mrjbq7/ta-lib/archive/master.zip && unzip master.zip && cd ta-lib-master && python setup.py install.
Same error as above.
Any ideas as to what I'm doing wrong?