如何为 Python PyBrain 安装 modulemesh 包
How can I install modulemesh package for Python PyBrain
我想将 PyBrain 安装到 Python3.6(Windows 7)。
在错误中我遇到了文件 pybrain/structure/init.py
我修复了导入并设置 PYTHONPATH 以加载结构包。
现在看起来像这样:
from connections import *
from modules import *
from networks.__init__ import *
from modulemesh import ModuleMesh
现在我得到这个错误:
from modulemesh import ModuleMesh
ModuleNotFoundError: No module named 'modulemesh'
我在网上找不到什么modulemesh包。
它是什么以及如何安装它?
我想将 PyBrain 安装到 Python3.6(Windows 7)。 在错误中我遇到了文件 pybrain/structure/init.py 我修复了导入并设置 PYTHONPATH 以加载结构包。 现在看起来像这样:
from connections import *
from modules import *
from networks.__init__ import *
from modulemesh import ModuleMesh
现在我得到这个错误:
from modulemesh import ModuleMesh
ModuleNotFoundError: No module named 'modulemesh'
我在网上找不到什么modulemesh包。 它是什么以及如何安装它?