Uninstall Django completely

前端 未结 10 2177
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-24 10:01

I uninstalled django on my machine using pip uninstall Django. It says successfully uninstalled whereas when I see django version in python shell, it still give

10条回答
  •  攒了一身酷
    2020-12-24 10:20

    On Windows, I had this issue with static files cropping up under pydev/eclipse with python 2.7, due to an instance of django (1.8.7) that had been installed under cygwin. This caused a conflict between windows style paths and cygwin style paths. So, unfindable static files despite all the above fixes. I removed the extra distribution (so that all packages were installed by pip under windows) and this fixed the issue.

提交回复
热议问题