Skip to content
Advertisement

‘setup.py install is deprecated’ warning shows up every time I open a terminal in VSCode

Every time I boot up terminal on VSCode, I get the following prompt. This does not happen on Terminal.app.

    /usr/local/lib/python3.9/site-packages/setuptools/command/install.py:34:
SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip
and other standards-based tools.

How do I resolve this?

Advertisement

Answer

Install the setuptools 58.2.0 version using the following command

pip install setuptools==58.2.0
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement