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
Running test-feedforward.py results in the following error:
C:\Users\tahoemike\Documents\Studies\Code\neat-python-master\examples\single-pole-balancing>python test-feedforward.py
Traceback (most recent call last):
File "C:\Users\tahoemike\Documents\Studies\Code\neat-python-master\examples\single-pole-balancing\test-feedforward.py", line 10, in
from movie import make_movie
File "C:\Users\tahoemike\Documents\Studies\Code\neat-python-master\examples\single-pole-balancing\movie.py", line 2, in
import moviepy.editor as mpy
ModuleNotFoundError: No module named 'moviepy.editor'
The line
import moviepy.editor as mpy
in the file movie.py needs to be changed to:
import moviepy as mpy
Then the program produces a cart balancing movie as expected.
Desktop (please complete the following information):
Windows 10
Chrome 123.0.6312.122
The text was updated successfully, but these errors were encountered:
Running test-feedforward.py results in the following error:
C:\Users\tahoemike\Documents\Studies\Code\neat-python-master\examples\single-pole-balancing>python test-feedforward.py
Traceback (most recent call last):
File "C:\Users\tahoemike\Documents\Studies\Code\neat-python-master\examples\single-pole-balancing\test-feedforward.py", line 10, in
from movie import make_movie
File "C:\Users\tahoemike\Documents\Studies\Code\neat-python-master\examples\single-pole-balancing\movie.py", line 2, in
import moviepy.editor as mpy
ModuleNotFoundError: No module named 'moviepy.editor'
The line
import moviepy.editor as mpy
in the file movie.py needs to be changed to:
import moviepy as mpy
Then the program produces a cart balancing movie as expected.
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: