英文:
SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools
问题
/usr/lib/python3/dist-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
英文:
/usr/lib/python3/dist-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
I run colcon build
and I get the following error:
/usr/lib/python3/dist-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
I also downgraded setptools to 58.2.0 but I still get the error
Any ideas?
答案1
得分: 0
英文:
- Problem is with your version of Setuptools . Downgrading it will remove this warning but that might cause problems with other as dependencies .
- Downgrade it to 58.2 version through pip
- Solved in a Video
- More Explanation provided here: Question link
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论