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 の 2 つの解決策

pip install pydot3

また

pip install pydotplus
于 2016-06-24T17:55:21.397 に答える