i want to use graph api on python so i can do analysis on posts. so far i tried to import the library:
import facebook
but i got the error
import facebook
File "C:\Users\matan\Desktop\Machine Learning Forex\facebook.py", line 11
pip install -e git+https://github.com/mobolic/facebook-sdk.git#egg=facebook-sdk
^
SyntaxError: invalid syntax
File "C:\Users\matan\Desktop\Machine Learning Forex\facebook.py", line 11
pip install -e git+https://github.com/mobolic/facebook-sdk.git#egg=facebook-sdk
^
SyntaxError: invalid syntax
how can i import this library?
pipis not supposed to be run by the Python interpreter. Where did you find your facebook module? Aren't you missing a step in its installation?