python web框架django 安装ueditor报错ModuleNotFoundError: No module named ‘shortuuid’
我们安装ueditor之后,使用ueditorfield的时候,我们在生成模型的时候,可能会遇到 No module named 'shortuuid'这样的错误。这是因为ueditor使用了这个模块,我们只需要
pip install shortuuid 安装这个模块之后,再执行makegirations 就可以了。
很多类似的错误,比如no moudule named xxx 都可以通过尝试安装pip install xxx来尝试。