Pybrain In Anaconda - Importerror: No Module Named 'structure'
I'm looking for a way to use numpy, scipy and pybrain in python. If I try to install those I get the error: Microsoft Visual C++ 10.0 is required (Unable to find vcvarsall.bat). I
Solution 1:
This seems to be an issue with the library when used from Python 3 and installed using pip
. The latest version listed is 0.3.3, but I'm still getting v0.3.0 when installing.
Try installing numpy
and scipy
in Anaconda, then (after activating the conda environment) install directly from the git repo:
pip install git+https://github.com/pybrain/pybrain.git@0.3.3
This did the trick for me.
Post a Comment for "Pybrain In Anaconda - Importerror: No Module Named 'structure'"