dosubot[bot] commented on issue #30553: URL: https://github.com/apache/superset/issues/30553#issuecomment-2400358909
<!-- Answer --> A similar issue was discussed in a closed thread regarding the installation of the `python-ldap` package <sup>[[1]](https://github.com/apache/superset/issues/18074)</sup>. Here's a suggested solution: 1. **Access the Superset container**: ```bash docker exec -it <container_name> /bin/bash ``` 2. **Install necessary packages**: ```bash apt-get update -y && apt-get install -y python3-dev libldap2-dev libsasl2-dev ldap-utils tox lcov valgrind ``` 3. **Install `python-ldap`**: ```bash pip install python-ldap ``` 4. **Restart the container** if needed: ```bash docker-compose -f docker-compose-non-dev.yml restart ``` This should help resolve the issue with LDAP configuration in Superset 4.1.0 rc2. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* -- 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]
