2

我正在尝试安装 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。

4

1 回答 1

1

python3的两种可能的解决方案

pip install pydot3

或者

pip install pydotplus
于 2016-06-24T17:55:21.397 回答