Uninstall Django completely

前端 未结 10 2235
爱一瞬间的悲伤
爱一瞬间的悲伤 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:08

    If installed Django using python setup.py install

    python -c "import sys; sys.path = sys.path[1:]; import django; print(django.__path__)"
    

    find the directory you need to remove, delete it

提交回复
热议问题