我收到此错误
ImportError: no module named request
修复这个问题:
sudo apt-get install request
在 Ubuntu 中有效。如何在 CentOS 中修复此错误?
答案1
安装来自源代码的 pip. 然后尝试
pip install django-request
答案2
- yum 安装 python-setuptools
- easy_install 安装 pip
- pip 安装请求
我收到此错误
ImportError: no module named request
修复这个问题:
sudo apt-get install request
在 Ubuntu 中有效。如何在 CentOS 中修复此错误?
安装来自源代码的 pip. 然后尝试
pip install django-request