如何在python中访问库“ plot_utils”?

时间:2018-12-10 10:12:31

标签: python anaconda

我需要这个库“ plot_utils”进行分析和绘图,但是我无法在网上找到它。该库与Brian2(Python中的一个库)有关,用于增强神经网络。 我通过anaconda安装了brian2。当我想导入plot_utils并在鳕鱼中使用时,收到错误消息:

ModuleNotFoundError:没有名为“ plot_utils”的模块

能请你帮我吗?

2 个答案:

答案 0 :(得分:1)

首先,您需要使用“pip install plot_utils”在您的工作环境中安装模块,然后您可以使用“import plot_utils”导入库。

此链接将帮助您:https://libraries.io/pypi/plot-utils[this 是 plot_utils 的官方文档]

答案 1 :(得分:0)

您需要提供有关您在何处偶然发现该名称的更多信息,例如一些复制的代码等。

您提供的唯一参考(即brian2)似乎与此相关。

https://brian2.readthedocs.io/en/stable/examples/frompapers.Stimberg_et_al_2018.plot_utils.html

也许只是将代码复制到名为“ plot_utils.py”的文件中,然后将其保存在代码搜索它的路径中即可。