Part of this answer references GPT, GPT_Pro for better solution.
Installing jupyter is mostly due to problems with system environment variables. Therefore, it is recommended that you first check that the system environment variables are configured correctly. In general, you can view the current system environment variables by opening the command line and typing the "set" command, or manually adding python's installation PATH if you haven't already added it to Path.
Also, consider python versions when installing jupyter using the pip install command. For example, do not use pip2.x to install jupyter if python3.x is currently used, as this will cause problems. Also, install the notebook package with the pip install notebook before installing jupyter.
Finally, jupyter also needs to install some separate plug-ins for proper use, such as the nb_conda_kernels plug-in: conda install nb_conda_kernels.
In summary, you should also pay attention to the above aspects when installing jupyter using the pip install command to avoid errors.
If the answer is helpful, please accept it.