I'm almost a beginner in programming. For the introduction to Python, when I put jupyter-notebook (Ver6.03) and started it from the command prompt, an error occurred (below). I tried a method that I came up with while I was researching, and it worked, so it's a memo for the time being.
★ Environment: Windows10(build:18363.720) anaconda(ver 1.7.2)、phython(ver 3.7.6)、jupyter-notebook(ver 6.0.3)
User\HOGE\anaconda3\lib\site-packages\zmq\backend\cython\__init__.py", line 6, in <module>
from . import (constants, error, message, context,
ImportError: DLL load failed:The specified module cannot be found.
It didn't progress at all, and the movement of the web did not move the directory, and when I was researching various things, I found an article on Qiita.
-About the bug that anaconda fails to import numpy and scipy
It's not the same bug, but it seems that anaconda3 \ Library \ bin isn't working due to a priority issue in the environment variable Path. .. .. Maybe this is also the case ...
I was scared to delete it, so I changed the order of the user environment variables in the PATH through the path and changed the priority.
So, I haven't confirmed it at all, but it seems that there are many installation failures due to environment variable conflicts, so is it okay if I change the order of the environment variables? ?? It was that.
I was worried that it would be okay to keep it at the top, so I returned to the ranking before shutting down. The jupyter-notebook is lightly touched, but it seems to work without problems.
It was a poor sentence, but that's it. m (__) m
Recommended Posts