Я хочу импортировать любую библиотеку в Jupyter Notebook:
import numpy as np
Но произошла следующая ошибка:
---------------------------------------------------------------------------
OSError Traceback (most recent call last)
<ipython-input-1-0aa0b027fcb6> in <module>
----> 1 import numpy as np
~\AppData\Roaming\Python\Python37\site-packages\numpy\__init__.py in <module>
138
139 # Allow distributors to run custom init code
--> 140 from . import _distributor_init
141
142 from . import core
~\AppData\Roaming\Python\Python37\site-packages\numpy\_distributor_init.py in <module>
24 # NOTE: would it change behavior to load ALL
25 # DLLs at this path vs. the name restriction?
---> 26 WinDLL(os.path.abspath(filename))
27 DLL_filenames.append(filename)
28 if len(DLL_filenames) > 1:
~\Anaconda3\lib\ctypes\__init__.py in __init__(self, name, mode, handle, use_errno, use_last_error)
354
355 if handle is None:
--> 356 self._handle = _dlopen(self._name, mode)
357 else:
358 self._handle = handle
OSError: [WinError 193] %1 geçerli bir Win32 uygulaması değil
Если я ничего не импортирую, никаких ошибок не возникает.И эта ситуация одинакова во всех библиотеках.Я попытался переустановить pip и переустановить numpy.И я попытался также удалить ноутбук и установить предыдущую версию.