摘要: 错误原因是你的项目使用的不是Django自带的用户表,采用的自定义的用户表,这个时候需要在settings.py里面进行指定。 AUTH_USER_MODEL = 'usersApp.UserProfile' # usersApp是app名,UserProfile是models中的类名 阅读全文
posted @ 2022-10-13 21:01 侬侬发 阅读(162) 评论(0) 推荐(0) 编辑
摘要: Can't uninstall 'Pillow'. No files were found to uninstall. Pillow卸载不掉的解决办法 1、进入python所在路径,进入scripts文件夹 2、执行pip uninstall Pillow卸载 阅读全文
posted @ 2022-10-13 20:47 侬侬发 阅读(923) 评论(0) 推荐(0) 编辑
摘要: pip常用命令:bundle,创建包含多个包的pybundles; freeze,显示所有已安装的包; help,显示可用命令; install,安装包; search,搜索PyPi; uninstall,卸载包; unzip,解压缩单个包; zip,压缩单个包。安装: pip3 install n 阅读全文
posted @ 2022-10-13 19:37 侬侬发 阅读(30) 评论(0) 推荐(0) 编辑