我试图在Ubuntu中安装Python Ta-Lib,但是当我运行时:
pip install TA-Lib
我收到此错误:
Command "/usr/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-YfCSFn/TA-Lib/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-swmI7D-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-build-YfCSFn/TA-Lib/
我已安装:
sudo apt-get install python3-dev
并安装了Ta-lib
我该如何解决这个问题?
答案 0 :(得分:15)
我 能 加载python3。
<强>步骤:强>
从http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz
解压 tar -xvf ta-lib-0.4.0-src.tar.gz
cd /../ta-lib
./configure --prefix=/usr
make
sudo make install
sudo apt upgrade
pip install ta-lib
或pip install TA-Lib
检查 import talib
答案 1 :(得分:1)
似乎其他人有this problem。
引用接受的答案:
似乎您的PiP无法按照&#34;导入访问Setuptools setuptools的&#34;在错误中。首先尝试以下尝试运行您的 pip再次安装。
> sudo pip install -U setuptools
或者如果引用他的评论不起作用:
试试这个&#39; sudo -H pip install TA-Lib&#39;
正如Filipe Ferminiano在评论中所说,如果仍然无法修复它,那么你可以试试this link上的内容。
再次引用接受的答案:
Your sudo is not getting the right python. This is a known behaviour of sudo in Ubuntu. See this question for more info. You need to make sure that sudo calls the right python, either by using the full path:
sudo /usr/local/epd/bin/python setup.py install
或通过执行以下操作(在bash中):
alias sudo='sudo env PATH=$PATH'
sudo python setup.py install
以下是问题he's talking about
如果能解决您的问题,请相信其中一个已接受的答案。