You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It does not say if it runs on python 2 or 3. If I run it on python 2 it says:
python main.py
Traceback (most recent call last):
File "main.py", line 1, in
from neural_network import NeuralNetwork
File "/home/al/neural-network-animation/neural_network.py", line 3, in
from matplotlib import pyplot
File "/home/al/neural-network-animation/matplotlib/pyplot.py", line 27, in
import matplotlib.colorbar
File "/home/al/neural-network-animation/matplotlib/colorbar.py", line 32, in
import matplotlib.artist as martist
File "/home/al/neural-network-animation/matplotlib/artist.py", line 12, in
from .transforms import Bbox, IdentityTransform, TransformedBbox,
File "/home/al/neural-network-animation/matplotlib/transforms.py", line 39, in
from matplotlib._path import (affine_transform, count_bboxes_overlapping_bbox,
ImportError: No module named _path
And if I run it under python 3 it says:
Traceback (most recent call last):
File "main.py", line 1, in
from neural_network import NeuralNetwork
File "/home/al/neural-network-animation/neural_network.py", line 3, in
from matplotlib import pyplot
File "/home/al/neural-network-animation/matplotlib/pyplot.py", line 27, in
import matplotlib.colorbar
File "/home/al/neural-network-animation/matplotlib/colorbar.py", line 32, in
import matplotlib.artist as martist
File "/home/al/neural-network-animation/matplotlib/artist.py", line 12, in
from .transforms import Bbox, IdentityTransform, TransformedBbox,
File "/home/al/neural-network-animation/matplotlib/transforms.py", line 39, in
from matplotlib._path import (affine_transform, count_bboxes_overlapping_bbox,
ImportError: No module named 'matplotlib._path'
Apparently it requires some modules? I am running it under lubuntu 14.2
The text was updated successfully, but these errors were encountered:
It does not say if it runs on python 2 or 3. If I run it on python 2 it says:
python main.py
Traceback (most recent call last):
File "main.py", line 1, in
from neural_network import NeuralNetwork
File "/home/al/neural-network-animation/neural_network.py", line 3, in
from matplotlib import pyplot
File "/home/al/neural-network-animation/matplotlib/pyplot.py", line 27, in
import matplotlib.colorbar
File "/home/al/neural-network-animation/matplotlib/colorbar.py", line 32, in
import matplotlib.artist as martist
File "/home/al/neural-network-animation/matplotlib/artist.py", line 12, in
from .transforms import Bbox, IdentityTransform, TransformedBbox,
File "/home/al/neural-network-animation/matplotlib/transforms.py", line 39, in
from matplotlib._path import (affine_transform, count_bboxes_overlapping_bbox,
ImportError: No module named _path
And if I run it under python 3 it says:
Traceback (most recent call last):
File "main.py", line 1, in
from neural_network import NeuralNetwork
File "/home/al/neural-network-animation/neural_network.py", line 3, in
from matplotlib import pyplot
File "/home/al/neural-network-animation/matplotlib/pyplot.py", line 27, in
import matplotlib.colorbar
File "/home/al/neural-network-animation/matplotlib/colorbar.py", line 32, in
import matplotlib.artist as martist
File "/home/al/neural-network-animation/matplotlib/artist.py", line 12, in
from .transforms import Bbox, IdentityTransform, TransformedBbox,
File "/home/al/neural-network-animation/matplotlib/transforms.py", line 39, in
from matplotlib._path import (affine_transform, count_bboxes_overlapping_bbox,
ImportError: No module named 'matplotlib._path'
Apparently it requires some modules? I am running it under lubuntu 14.2
The text was updated successfully, but these errors were encountered: