I am trying to install packages using pip and it is throwing error.
Command that I have used,
sudo pip install selenium
The error
After installing python3.7.3 and changing the symbolic link of python3 to point to it, I had this error. Fixed it by changing first line to:
# !/usr/bin/python3.5 -Es
The original was almost that... had to add the ".5" only.