django.core.exceptions.ImproperlyConfigured: You‘re using the staticfiles app without having set the

在同步静态的时候 会遇到上诉的问题
django.core.exceptions.ImproperlyConfigured: You’re using the staticfiles app without having set the STATIC_ROOT setting to a filesystem path

在同步静态前需要将下面的代码注释

django.core.exceptions.ImproperlyConfigured: You‘re using the staticfiles app without having set the
然后执行命令

django.core.exceptions.ImproperlyConfigured: You‘re using the staticfiles app without having set the

django.core.exceptions.ImproperlyConfigured: You‘re using the staticfiles app without having set the
同步完成后在打开对应的注释,将下面的注释掉django.core.exceptions.ImproperlyConfigured: You‘re using the staticfiles app without having set the

这样问题就解决了