Ruchir
Ruchir

Reputation: 81

installing moviepy in python3.4 on windows

i am having problem installing moviepy on my pytho3.4 version on windows. i wrote this code:

py -3.4 -m pip install moviepy

and got the error:
File "<stdin>", line 1 py -3.4 -m pip install moviepy (the pointer is on 2nd 'p' of pip)
SyntaxError: invalid syntax

tried this:
(sudo) pip install moviepy

got the error:
File "<stdin>", line 1 pip install moviepy (the pointer is on 2nd 'l' of install)
SyntaxError: invalid syntax

tried this:
(sudo)pip install moviepy

got the error:
File "<stdin>", line 1 (sudo)pip install moviepy(the pointer is on 2nd 'l' of install)
SyntaxError: invalid syntax

I need help installing this package...i have pip installed in my version of python i.e. Python3.4

Upvotes: 0

Views: 1742

Answers (1)

MattDMo
MattDMo

Reputation: 102852

You are entering these commands in the Python shell. Exit it, and enter pip install moviepy at the regular command prompt.

Upvotes: 1

Related Questions