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/11/08 19:40:45 UTC

[GitHub] [superset] fullergalway commented on issue #20914: Error installing Superset 2.0

fullergalway commented on issue #20914:
URL: https://github.com/apache/superset/issues/20914#issuecomment-1307738839

   Also struggled with [this problem](https://github.com/apache/superset/issues/20914#issuecomment-1249466927) 
   
   ```sh
   superset db upgrade
   
   ModuleNotFoundError: No module named 'wtforms.ext'
   ```
   
   I found the installed superset (from an earlier attempt) was using a different python than my venv 
   
   ```sh
   (venv) rfuller@Roberts-MBP superset % head -1 $(which superset
   /usr/local/bin/superset
   (venv) rfuller@Roberts-MBP superset % head -1 $(which superset)
   #!/usr/local/opt/python@3.10/bin/python3.10
   (venv) rfuller@Roberts-MBP superset % which python
   /Users/rfuller/dev/superset/venv/bin/python
   ```
   I resolved the issue by changing superset to use python from my environment.
   
   ```
   (venv) rfuller@Roberts-MBP superset % vi $(which superset)
   (venv) rfuller@Roberts-MBP superset % head -1 $(which superset)
   #!/usr/bin/env python
   ```
   
   All good now.


-- 
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