ImportError: DLL load failed when importing Numpy installed in conda virtual environment

后端 未结 6 2030
北荒
北荒 2020-12-05 02:36

In Windows, I created a Conda virtual environment with the command

conda create -n test python=2.7 pandas scipy matplotlib numpy

Once it is

6条回答
  •  一向
    一向 (楼主)
    2020-12-05 03:24

    Uninstall and install numpy again.

    pip uninstall numpy
    pip install numpy
    

    Then try import again, it should work. That is what I did

提交回复
热议问题