howto install pygraphviz on windows 10 64bit

前端 未结 6 2064
遇见更好的自我
遇见更好的自我 2020-12-08 16:40

Has anyone succeeded in installing pygraphviz on windows 10 64bit? I tried anaconda with python 3.5 64bit & 32bit with no success.

Here is the error I am getting

6条回答
  •  不知归路
    2020-12-08 17:32

    Start reading from here https://github.com/pygraphviz/pygraphviz/issues/58

    At the bottom of that page there is a link to a x64 zip file in Github (like this) Unpack that. Create a coresponding Program Files folder for your x64 file and put them there

    Then install using this

    pip install --global-option=build_ext --global-option="-IC:\Program Files\Graphviz2.38\include" --global-option="-LC:\Program Files\Graphviz2.38\lib\release\lib" pygraphviz
    

提交回复
热议问题