cxjbridge opened a new issue, #21079: URL: https://github.com/apache/superset/issues/21079
Hi, I have a confusing question: After installing superset following the instructions on page(https://superset.apache.org/docs/installation/installing-superset-from-scratch/): pip install apache-superset I initialized the db: superset db upgrade **it shows the message that we need cachelib>0.9.0:** raise VersionConflict(dist, req).with_context(dependent_req) pkg_resources.ContextualVersionConflict: (cachelib 0.4.1 (/home/supersetvm/venv/lib/python3.8/site-packages), _Requirement.parse('cachelib>=0.9.0')_, {'flask-caching'}) So I updated the cachelib to 0.9.0: pip install cachelib==0.9.0 **It shows the following message that apache-superset 2.0.0 need cachelib<0.5,>=0.4.1:** Collecting cachelib==0.9.0 Using cached cachelib-0.9.0-py3-none-any.whl (15 kB) ERROR: apache-superset 2.0.0 has requirement cachelib<0.5,>=0.4.1, but you'll have cachelib 0.9.0 which is incompatible. Installing collected packages: cachelib Attempting uninstall: cachelib Found existing installation: cachelib 0.4.1 Uninstalling cachelib-0.4.1: Successfully uninstalled cachelib-0.4.1 Successfully installed cachelib-0.9.0 **run superset db upgrade again:** pkg_resources.DistributionNotFound: The _'cachelib<0.5,>=0.4.1_' distribution was not found and is required by apache-superset **I am confused that Which version I should install for cachelib? apache-superset needs cache<0.5, >=0.4.1. Some other package needs cachelib>=0.9.** -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
