wiktor2200 commented on issue #20863: URL: https://github.com/apache/superset/issues/20863#issuecomment-1224384121
Hello @alldoami! Finally I've also used requirements without: `typing-extensions`, when I posted my first reply it worked, but then I changed some other dependencies and I just used these two: ``` snowflake-connector-python==2.7.9 snowflake-sqlalchemy==1.2.4 ``` @EamonKeane it's better idea to just create `Dockerfile` and extend your image (it's recommended in docs here: https://hub.docker.com/r/apache/superset) in section: `How to extend this image` so you just clone pre-build docker (master or specific version) and then extend it by running (or anything you need) ``` RUN pip install \ snowflake-connector-python==2.7.9 \ snowflake-sqlalchemy==1.2.4 ``` -- 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]
