We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After installing the package using pip install raimitigations, when I import any class from the cohort module, I get the following error:
pip install raimitigations
cohort
> from .utils import fetch_cohort_results, plot_value_counts_cohort > import seaborn as sns No module named 'seaborn'
The error doesn't occur if I install the library using pip install raimitigations[all].
pip install raimitigations[all]
To fix, add seaborn to the base set of dependencies, not only to the [all] dependency group.
seaborn
[all]
The text was updated successfully, but these errors were encountered:
Addressed and resolved in release v1.1.1.
Sorry, something went wrong.
No branches or pull requests
After installing the package using
pip install raimitigations
, when I import any class from thecohort
module, I get the following error:The error doesn't occur if I install the library using
pip install raimitigations[all]
.To fix, add
seaborn
to the base set of dependencies, not only to the[all]
dependency group.The text was updated successfully, but these errors were encountered: