when I run pip3 it crashes.
Here's what I get:
ubuntu@ip-xxx-xx-xx-xx:/var/www/html/pythonscrape$ pip3 --version
Traceback (most recent call last):
File "/usr/local/bin/pip3", line 7, in
from pip._internal.cli.main import main
File "/usr/local/lib/python3.5/dist-packages/pip/_internal/cli/main.py", line 57
sys.stderr.write(f"ERROR: {exc}")
^
SyntaxError: invalid syntax
One thing I'll add though, is that when I type the pip command, it shows that it is working for 2.7, however I do not want to use that version.
ubuntu@ip-xxx-xx-xx-xx:/var/www/html/pythonscrape$ pip --version
pip 8.1.1 from /usr/lib/python2.7/dist-packages (python 2.7)
It looks like there is some kind of clash with the versions?
Should I even be using pip (i.e. not pip3) in python3?
Ultimately, my goal is to install bs4 for beautiful soup.