Hi, I created a new virtual environment for a new web app but pip seems to be broken inside it. Inside of other environments its fine, no environments is fine. Google isn't helping. Any thoughts?
06:01 ~/delaney$ mkvirtualenv delaney_venv --python=/usr/bin/python3.5
Running virtualenv with interpreter /usr/bin/python3.5
Using base prefix '/usr'
New python executable in /home/user_name/.virtualenvs/delaney_venv/bin/python3.5
Also creating executable in /home/user_name/.virtualenvs/delaney_venv/bin/python
Installing setuptools, pip, wheel...done.
virtualenvwrapper.user_scripts creating /home/user_name/.virtualenvs/delaney_venv/bin/predeactivate
virtualenvwrapper.user_scripts creating /home/user_name/.virtualenvs/delaney_venv/bin/postdeactivate
virtualenvwrapper.user_scripts creating /home/user_name/.virtualenvs/delaney_venv/bin/preactivate
virtualenvwrapper.user_scripts creating /home/user_name/.virtualenvs/delaney_venv/bin/postactivate
virtualenvwrapper.user_scripts creating /home/user_name/.virtualenvs/delaney_venv/bin/get_env_details
(delaney_venv) 06:02 ~/delaney$ pip
Traceback (most recent call last):
File "/home/user_name/.virtualenvs/delaney_venv/bin/pip", line 7, in <module>
from pip._internal.cli.main import main
File "/home/user_name/.virtualenvs/delaney_venv/lib/python3.5/site-packages/pip/_internal/cli/main.py", line 60
sys.stderr.write(f"ERROR: {exc}")
^
SyntaxError: invalid syntax
(delaney_venv) 06:02 ~/delaney$