pvergain commented on issue #15768: URL: https://github.com/apache/superset/issues/15768#issuecomment-987889416
> @santicomp2014, > > You should just be able to: > > * Clone the repo: $ git clone https://github.com/apache/superset.git > > * $ cd superset/requirements/ > > * Change both **docker.txt** and **development.txt** to _psycopg2-binary==2.8.6_ > > * Run: $ docker-compose -f docker-compose-non-dev.yml up For me, this didn't work. I found this "hack" : https://github.com/apache/superset/issues/15768#issuecomment-987887089 ``` docker-compose -f docker-compose-non-dev.yml up docker-compose -f docker-compose-non-dev.yml exec superset pip uninstall -y psycopg2-binary docker-compose -f docker-compose-non-dev.yml exec superset pip install psycopg2-binary==2.8.6 docker-compose -f docker-compose-non-dev.yml restart superset ``` -- 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]
