We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
I installed cellxgene-gateway using anaconda Python 3.11.5.
cellxgene-gateway does not start with error:
After search I got aware of some changes in flask version >= 3.0.
And the standard installation installed conda list | grep werkzeug
conda list | grep flask
Solved the error by installing fix versions: pip install werkzeug==2.3.0 flask==2.2.2
After that cellxgene-gateway starts and works fine.
The text was updated successfully, but these errors were encountered:
I'll pin the versions for now. cellxgene-gateway is due for a cycle of dependency updates.
Sorry, something went wrong.
#87 temporarily pin versions
35c8e81
#87 Fix test
c4b9084
#87 patch enable annotations
c1111e2
#87 blacken
4e63ff9
#87 remove version pins for markupsafe, flask and werkzeug
5d29153
also remove dependency on flask-api
@ahrweber this issue should be addressed in cellxgene-gateway 0.4.0, please confirm if you have time.
alokito
No branches or pull requests
I installed cellxgene-gateway using anaconda Python 3.11.5.
cellxgene-gateway does not start with error:
ImportError: cannot import name 'url_decode_stream' from 'werkzeug.urls' (/home/user/.cellxgene-gateway/lib/python3.11/site-packages/werkzeug/urls.py)
After search I got aware of some changes in flask version >= 3.0.
And the standard installation installed
conda list | grep werkzeug
werkzeug 3.0.1 pypi_0 pypi
conda list | grep flask
flask 3.0.1 pypi_0 pypi
Solved the error by installing fix versions:
pip install werkzeug==2.3.0 flask==2.2.2
After that cellxgene-gateway starts and works fine.
The text was updated successfully, but these errors were encountered: