无法在django应用程序中使用anaconda软件包

无法在django应用程序中使用anaconda软件包,django,anaconda,Django,Anaconda,我是python web开发的新手。我正在使用Django框架,但我也需要机器学习库,所以在安装Django并使用它一段时间后,我安装了python的anaconda发行版,并将pycharm中的解释器指向anaconda。问题是,当我导入sklearn或pandas之类的库,然后运行服务器时,它会在命令提示符中给出该错误 PS C:\Users\xxx\desktop\intelligent> python manage.py runserver Performing system ch

我是python web开发的新手。我正在使用Django框架,但我也需要机器学习库,所以在安装Django并使用它一段时间后,我安装了python的anaconda发行版,并将pycharm中的解释器指向anaconda。问题是,当我导入sklearn或pandas之类的库,然后运行服务器时,它会在命令提示符中给出该错误

PS C:\Users\xxx\desktop\intelligent> python manage.py runserver
Performing system checks...

Unhandled exception in thread started by <function check_errors.<locals>.wrapper at 0x03C62780>
Traceback (most recent call last):
  File "C:\Users\xxx\AppData\Local\Programs\Python\Python36-32\lib\site-packages\django-1.10.6-py3.6.egg\django\utils\a
utoreload.py", line 226, in wrapper
    fn(*args, **kwargs)
  File "C:\Users\xxx\AppData\Local\Programs\Python\Python36-32\lib\site-packages\django-1.10.6-py3.6.egg\django\core\ma
nagement\commands\runserver.py", line 121, in inner_run
    self.check(display_num_errors=True)
  File "C:\Users\xxx\AppData\Local\Programs\Python\Python36-32\lib\site-packages\django-1.10.6-py3.6.egg\django\core\ma
nagement\base.py", line 374, in check
    include_deployment_checks=include_deployment_checks,
  File "C:\Users\xxx\AppData\Local\Programs\Python\Python36-32\lib\site-packages\django-1.10.6-py3.6.egg\django\core\ma
nagement\base.py", line 361, in _run_checks
    return checks.run_checks(**kwargs)
  File "C:\Users\xxx\AppData\Local\Programs\Python\Python36-32\lib\site-packages\django-1.10.6-py3.6.egg\django\core\ch
ecks\registry.py", line 81, in run_checks
    new_errors = check(app_configs=app_configs)
  File "C:\Users\xxx\AppData\Local\Programs\Python\Python36-32\lib\site-packages\django-1.10.6-py3.6.egg\django\core\ch
ecks\urls.py", line 14, in check_url_config
    return check_resolver(resolver)
  File "C:\Users\xxx\AppData\Local\Programs\Python\Python36-32\lib\site-packages\django-1.10.6-py3.6.egg\django\core\ch
ecks\urls.py", line 24, in check_resolver
    for pattern in resolver.url_patterns:
  File "C:\Users\xxx\AppData\Local\Programs\Python\Python36-32\lib\site-packages\django-1.10.6-py3.6.egg\django\utils\f
unctional.py", line 35, in __get__
    res = instance.__dict__[self.name] = self.func(instance)
  File "C:\Users\xxx\AppData\Local\Programs\Python\Python36-32\lib\site-packages\django-1.10.6-py3.6.egg\django\urls\re
solvers.py", line 313, in url_patterns
    patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
  File "C:\Users\xxx\AppData\Local\Programs\Python\Python36-32\lib\site-packages\django-1.10.6-py3.6.egg\django\utils\f
unctional.py", line 35, in __get__
    res = instance.__dict__[self.name] = self.func(instance)
  File "C:\Users\xxx\AppData\Local\Programs\Python\Python36-32\lib\site-packages\django-1.10.6-py3.6.egg\django\urls\re
solvers.py", line 306, in urlconf_module
    return import_module(self.urlconf_name)
  File "C:\Users\xxx\AppData\Local\Programs\Python\Python36-32\lib\importlib\__init__.py", line 126, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 978, in _gcd_import
  File "<frozen importlib._bootstrap>", line 961, in _find_and_load
  File "<frozen importlib._bootstrap>", line 950, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 655, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 678, in exec_module
  File "<frozen importlib._bootstrap>", line 205, in _call_with_frames_removed
  File "C:\Users\xxx\desktop\intelligent\intelligent\urls.py", line 24, in <module>
    url(r'^$', include('home.urls')),
  File "C:\Users\xxx\AppData\Local\Programs\Python\Python36-32\lib\site-packages\django-1.10.6-py3.6.egg\django\conf\ur
ls\__init__.py", line 50, in include
    urlconf_module = import_module(urlconf_module)
  File "C:\Users\xxx\AppData\Local\Programs\Python\Python36-32\lib\importlib\__init__.py", line 126, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 978, in _gcd_import
  File "<frozen importlib._bootstrap>", line 961, in _find_and_load
  File "<frozen importlib._bootstrap>", line 950, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 655, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 678, in exec_module
  File "<frozen importlib._bootstrap>", line 205, in _call_with_frames_removed
  File "C:\Users\xxx\desktop\intelligent\home\urls.py", line 3, in <module>
    from . import views
  File "C:\Users\xxx\desktop\intelligent\home\views.py", line 14, in <module>
    import pandas
ModuleNotFoundError: No module named 'pandas'

根据日志,模块缺失

  File "C:\Users\xxx\desktop\intelligent\home\views.py", line 14, in <module>
    import pandas
ModuleNotFoundError: No module named 'pandas'

如果我想用anaconda和django怎么办?我应该用anaconda终端重新安装django吗?
  File "C:\Users\xxx\desktop\intelligent\home\views.py", line 14, in <module>
    import pandas
ModuleNotFoundError: No module named 'pandas'
pip install pandas