无法将numpy和pandas导入django

时间:2017-02-12 14:42:27

标签: python django pandas numpy

我可以查看为什么我无法将numpy或pandas导入django?它一直在给予

import numpy as np
ImportError: No module named numpy

以下是我导入它的代码。我在views.py btw

导入
from django.shortcuts import render
from django.template import loader
from django.http import HttpResponse
import numpy as np

1 个答案:

答案 0 :(得分:0)

您似乎没有确定已安装Numpy

通常,您可以使用numpy安装pip

Python 2.7

pip install numpy

Python 3

pip3 install numpy