You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the command pip install -r requirements-rtd.txt, an issue arises with use_2to3. This says it is due to setuptools>=58 breaking support for use_2to3. The changelog for setuptools notes:
"#2086: Removed support for 2to3 during builds. Projects should port to a unified codebase or pin to an older version of Setuptools using PEP 518 build-requires."
I resolved the issue by pip install setuptools==58 and then pip install -r requirements-rtd.txt.
Not entirely sure what the best option is to fix this.
The text was updated successfully, but these errors were encountered:
When running the command
pip install -r requirements-rtd.txt
, an issue arises withuse_2to3
. This says it is due tosetuptools>=58
breaking support foruse_2to3
. The changelog forsetuptools
notes:I resolved the issue by
pip install setuptools==58
and thenpip install -r requirements-rtd.txt
.Not entirely sure what the best option is to fix this.
The text was updated successfully, but these errors were encountered: