How can this error be corrected? Thank you in advance for answer.
Asked
Active
Viewed 1,211 times
0
-
Please post code as text, not images, so they are easier to read. What commands cause the error? – Eric Jin May 17 '22 at 14:11
1 Answers
0
As the warning says, you need to update the pip. Using the following code to update pip and setuptools:
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools
You can reinstall after the update is complete.

MingJie-MSFT
- 5,569
- 1
- 2
- 13
-
Made an update with these commands. Then I reinstalled ipikernel. As a result, this is the error: "note: This error originates from a subprocess, and is likely not a problem with pip. ERROR: Failed building wheel for pyzmq Failed to build pyzmq ERROR: Could not build wheels for pyzmq, which is required to install pyproject.toml-based projects" – Togner May 18 '22 at 07:21
-
@Togner https://stackoverflow.com/questions/70508775/error-could-not-build-wheels-for-pycairo-which-is-required-to-install-pyprojec Can this issue solve your problem? – MingJie-MSFT May 18 '22 at 07:34