【发布时间】:2020-08-04 12:16:19
【问题描述】:
使用自制软件安装图形工具
$ brew install graph-tool
安装成功。现在,当我尝试在 python shell 中导入模块时,使用from graph_tool.all import *
我收到 ModuleNotFoundError: No module named 'graph_tool' 错误
Python 版本信息 - Python 3.8.5,通过 pyenv 安装在 /Users/aamodpant/.pyenv/shims/python
graph-tool 安装在 /usr/local/Cellar/graph-tool
如何将它导入到我的 python 程序中?
【问题讨论】:
标签: python homebrew graph-tool