I am learning how to use the new Jupyter. I want to install packages:BeautifulSoup, mrjob, pattern, and seaborn on python 2.7. I first tried to do so by running pip install BeautifulSoup mrjob pattern seaborn
That all returns: SyntaxError: invalid syntax
I also tried from bs4 import BeautifulSoup
, it did work for Beautifulsoup. But I still don't know how to install other packages.
Wondering anyone know why there was syntax error for using pip install
? Is that because I haven't installed pip on python 2.7?