My Flask app environment is using anaconda
When I use IDE like PyCharm, it provides a terminal which already in the specific conda environment, like this:
It could easily let me to start the app via command flask run
Then my question is, how could I start the app in an original terminal?
I tried to use flask run
in the original terminal but the dependency module are not found (All dependencies are placed in the conda environment actually)