I have taken over a project that was broken on accident. It's a web application running Debian Linux with Django. In the application's virtualenv it only runs python 3.5. All of these commands return python 3.5 as the version:
python -V
pythong3.4 -V
pip -V
pip3 -V
I've tried using apt remove (and purge) python3.5
, apt remove (and purge) python3
, and deleting every 3.5 folder from the command whereis python3.5
.
How can I remove 3.5 and only use 3.4?