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
Link to the notebook Add the link to the notebook.
Describe the bug While performing pip install step, AttributeError: type object 'Distribution' has no attribute '_finalize_feature_opts' is thrown
AttributeError: type object 'Distribution' has no attribute '_finalize_feature_opts'
To reproduce Run the pip install cell for Fraud Detection Notebook 1 on a Studio Notebook. Issue does appear to happen on Sagemaker Classic Notebook.
To get around this, before those pip commands, insert a cell above with the following:
pip uninstall -y setuptools pip install setuptools==60.8.2
This forces an earlier version of setuptools to install which doesn't appear to have this issue. Solution inspired from pypa/setuptools#3118
The text was updated successfully, but these errors were encountered:
This has since been fixed.
Sorry, something went wrong.
No branches or pull requests
Link to the notebook
Add the link to the notebook.
Describe the bug
While performing pip install step,
AttributeError: type object 'Distribution' has no attribute '_finalize_feature_opts'
is thrownTo reproduce
Run the pip install cell for Fraud Detection Notebook 1 on a Studio Notebook. Issue does appear to happen on Sagemaker Classic Notebook.
To get around this, before those pip commands, insert a cell above with the following:
This forces an earlier version of setuptools to install which doesn't appear to have this issue. Solution inspired from pypa/setuptools#3118
The text was updated successfully, but these errors were encountered: