You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@superset.apache.org by "stevehenderson (via GitHub)" <gi...@apache.org> on 2023/01/29 02:19:54 UTC

[GitHub] [superset] stevehenderson commented on issue #22149: authlib already installed, but No module named 'authlib'

stevehenderson commented on issue #22149:
URL: https://github.com/apache/superset/issues/22149#issuecomment-1407540310

   I solved the same error by adding `authlib==1.2.0` it to the `boostrapScript` section of `my-values.yaml` (around L43):
   
   Was:
   
   ```
   bootstrapScript: |
     #!/bin/bash
     rm -rf /var/lib/apt/lists/* && \
     pip install \
       psycopg2-binary==2.9.1 \
       redis==3.5.3 && \
    .
   .
   .
   ```
   
   After:
   
   ```
   bootstrapScript: |
     #!/bin/bash
     rm -rf /var/lib/apt/lists/* && \
     pip install \
       psycopg2-binary==2.9.1 \
       authlib==1.2.0 \
       redis==3.5.3 && \
   .
   .
   .
   ```
   


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