我在jupyter下用“!python3 -m numpy install --upgrade numpy”想升级一下numpy,为什么报这个错呢?

Traceback (most recent call last):
  File "D:\Python\Anaconda3\lib\runpy.py", line 183, in _run_module_as_main
    mod_name, mod_spec, code = _get_module_details(mod_name, _Error)
  File "D:\Python\Anaconda3\lib\runpy.py", line 142, in _get_module_details
    return _get_module_details(pkg_main_name, error)
  File "D:\Python\Anaconda3\lib\runpy.py", line 109, in _get_module_details
    __import__(pkg_name)
  File "C:\Users\zx305\AppData\Roaming\Python\Python36\site-packages\numpy\__init__.py", line 140, in <module>
    from . import _distributor_init
  File "C:\Users\zx305\AppData\Roaming\Python\Python36\site-packages\numpy\_distributor_init.py", line 26, in <module>
    WinDLL(os.path.abspath(filename))
  File "D:\Python\Anaconda3\lib\ctypes\__init__.py", line 348, in __init__
    self._handle = _dlopen(self._name, mode)
OSError: [WinError 193] %1 不是有效的 Win32 应用程序。

https://blog.csdn.net/vample/article/details/88877745

python3 -m pip install --upgrade numpy 或
python3 -m pip3 install --upgrade numpy

既然用的是anaconda 可以直接conda upgrade numpy