Import Error: No module named numpy Anaconda

前端 未结 4 1413
梦毁少年i
梦毁少年i 2020-12-06 18:24

I have a very similar question to this question. I have only one version of python 3.5 installed on my Windows 7 64-bit system. I installed Anaconda3.4 via official website

4条回答
  •  有刺的猬
    2020-12-06 19:17

    First, remove the numpy from anaconda:

    conda remove numpy

    Then, install it back using pip

    pip install numpy

    This works for me.

提交回复
热议问题