srmalsallout commented on issue #13640:
URL: https://github.com/apache/superset/issues/13640#issuecomment-1493097421

   No need to update docker-compose-non-dev.yml 
   since the latest docker-compose already has the docker-bootstrap.
   
   You need to access the docker container (of the image "superset_app") using 
bash and install the trino driver using pip
   1- Get Container name:
   `docker ps`
   in my case see the attached image my container name is "099a15407304"
   
   2- Connect to container using bash
   `docker exec -u 0 -it <container_name> bash`
   in my case
   `docker exec -u 0 -it 099a15407304 bash`
   
   3- Install Trino Driver
   `pip install trino`
   
   No you are ready to go
   
   
![image](https://user-images.githubusercontent.com/62013676/229311621-ab0a8d15-9dce-401f-967a-8737b59bf602.png)
   


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

Reply via email to