You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@superset.apache.org by GitBox <gi...@apache.org> on 2022/08/20 23:39:50 UTC

[GitHub] [superset] WesleyBatista commented on issue #20723: ModuleNotFoundError: No module named 'werkzeug.wrappers.etag'

WesleyBatista commented on issue #20723:
URL: https://github.com/apache/superset/issues/20723#issuecomment-1221429948

   @dpgaspar thanks a lot for pointing that out!
   
   Was facing the same problem. Running 1.5.0,  upgrading to 2.0.0.
   
   My solution was:
   ```
   wget -O- https://raw.githubusercontent.com/apache/superset/2.0.0/requirements/base.txt | tail -n +10 > superset_requirements.txt
   pip install apache-superset==2.0.0 -r superset_requirements.txt
   ```
   
   This `requirements/base.txt` assumes a development environment (considering the `-e file:.` in there), and that was causing conflicts with my installation setup. `tail` in my command is to skip [those lines](https://github.com/apache/superset/blob/2.0.0/requirements/base.txt#L1-L9).
   
   After that I could move forward with applying db migrations successfully :)


-- 
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: notifications-unsubscribe@superset.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org
For additional commands, e-mail: notifications-help@superset.apache.org