Every time I boot up terminal on VSCode, I get the following prompt. This does not happen on Terminal.app.
JavaScript
x
4
1
/usr/local/lib/python3.9/site-packages/setuptools/command/install.py:34:
2
SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip
3
and other standards-based tools.
4
How do I resolve this?
Advertisement
Answer
Install the setuptools 58.2.0 version using the following command
JavaScript
1
2
1
pip install setuptools==58.2.0
2