Flask debug not working under Anaconda

前端 未结 2 1191
谎友^
谎友^ 2021-01-13 23:28

I\'m working in a standard development environment with Flask and am having trouble getting the debug to work.

Just using the standard Hello World, with an error l

2条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-13 23:52

    You can also uninstall the conda packages

    conda remove flask
    conda remove werkzeug
    

    Then just pip install both of those

    pip install flask
    pip install werkzeug
    

    That worked for me using conda 3.4.2

提交回复
热议问题