Python Forum
I get this when trying to install a module - SyntaxError: invalid syntax ? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: I get this when trying to install a module - SyntaxError: invalid syntax ? (/thread-17033.html)



I get this when trying to install a module - SyntaxError: invalid syntax ? - ejected - Mar-25-2019

I'm trying to install robobrowser, but when I type this into Python I get an error

>>> easy_install robobrowser
  File "<stdin>", line 1
    easy_install robobrowser
                           ^
SyntaxError: invalid syntax
Also tried this:
>>> pip install RoboBrowser
  File "<stdin>", line 1
    pip install RoboBrowser
              ^



RE: Probably super simple error but I'm new - Yoriz - Mar-25-2019

install from command line not from a python interpreter


RE: Probably super simple error but I'm new - ejected - Mar-25-2019

Ohh tysm