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

后端 未结 6 2024
北荒
北荒 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:35

    It seems the proper way to fix this is to do:

    conda install msvc_runtime
    

    If you are in a virtual environment, add this package there.

提交回复
热议问题