我正在尝试安装pydot。我得到以下互动:
sudo -H pip3 install pydot
Collecting pydot
Using cached pydot-1.0.2.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 20, in <module>
File "/tmp/pip-build-ykyu42cx/pydot/setup.py", line 5
except ImportError, excp:
^
SyntaxError: invalid syntax
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-ykyu42cx/pydot
我尝试时成功了:
sudo -H pip3 install pydot2
我怀疑这是理想的行为。
如果可能,请告知如何使用pip3安装pydot。
答案 0 :(得分:1)
python3的两种可能解决方案
pip install pydot3
或
pip install pydotplus