Python Django Pip Update Problems: How To Get Compatible Versions?
I tried to run a django demo project on a hosted server (Ubuntu 16.04): it worked fine. Then I tried to run the same code on a local machine: Unhandled exception in thread started
Solution 1:
Solution 2:
As RishiG said you should create a requirements.txt file which will contains the project dependencies but mostly you should use a virtual environnement. It will allow you to isolate your python version and packages and their version for each of your project.
Post a Comment for "Python Django Pip Update Problems: How To Get Compatible Versions?"