在运行点过项目是报No module named 'rest_framework’错误是因为没有安装rest_framework
只需要安装一下即可
但要注意不能直接
pip install rest_framework
而要
pip install djangorestframework
相应的报同样的错误No module named 'corsheaders’就大同小异了,解决方法同上
同种类型的错误有好多可以先试一下直接
pip install 包名
出现
Could not find a version that satisfies the requirement corsheaders (from versions: ) No matching distribution found for corsheaders
这个错误时就需要去官网上查一下安装的包名了,就如同我在上面列举的两种错误