I saw the first rocket.
from django.http import HttpResponse
def index(request):
return HttpResponse("Hello, world.")
'Hello, world.' it's ok! also 'python manage.py migrate' ok. But when I import pandas... (import only and no use.)
from django.http import HttpResponse
import pandas as pd
def index(request):
return HttpResponse("Hello, world.")
Browser thinks forever. How can I fix this issue?
my environment OS: CentOS Linux release 7.7.1908 (Core) Pandas: 0.19.2 Apache: 2.4.6 (CentOS) Django: 2.1 Browser: Google Chrome 76.0.3809.132
# python --version
Python 3.6.0 :: Anaconda 4.3.1 (64-bit)
simply, Anaconda is older? Please let me know if there is any missing information.