I am trying to use SuperTokens for my website, fro...
# support-questions-legacy
h
I am trying to use SuperTokens for my website, frontend is React and backend is Python with Connexion/Flask. I just completed the frontend integration without any issues, but the backend integration is not going quite as well. Flask is dependent on werkzeug-2.2.2 but, during install, supertokens-python uninstalls this in favor of werkzeug-2.0.3, which breaks my application.
Copy code
Installing collected packages: Werkzeug
  Attempting uninstall: Werkzeug
    Found existing installation: Werkzeug 2.2.2
    Uninstalling Werkzeug-2.2.2:
      Successfully uninstalled Werkzeug-2.2.2
ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
flask 2.2.2 requires Werkzeug>=2.2.2, but you have werkzeug 2.0.3 which is incompatible.
Successfully installed Werkzeug-2.0.3
EDIT: Recreating my virtual environment and reinstalling all my dependencies seems to have magically solved this issue.
3 Views