Django - 进程无法访问该文件,因为它正由另一个进程使用

时间:2017-04-27 13:20:38

标签: python django windows virtualenv django-compressor

我正试图在我的Windows 10上运行Django,我是Django的新手,我正在使用Compressor Toolkit,我的问题是,我可以运行manage.py但是localhost说

  

base.html,第9行的错误进程无法访问该文件,因为   它被另一个进程使用。

<!DOCTYPE html>
    {% load compress %}
    {% load staticfiles %}
    <html>
      <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, inital-scale=1"/>
        <title>{% block head_title %} Hydroqua Indonesia {% endblock head_title %}</title>
        {% compress css %}
        <link rel="stylesheet" type="text/x-scss" href="{% static '/css/global.scss' %}">
        <link rel="stylesheet" type="text/x-scss" href="{% static '/css/style.scss' %}">
        <link rel="stylesheet" href="{% static '/node_modules/bootstrap/dist/css/bootstrap.min.css' %}">
        {% endcompress %}
      </head>
      <body>
          {% include 'navbar.html' %}
          {% block content %}{% endblock content %}
        {% compress js %}

我的朋友可以顺利地从他的Linux运行压缩器,我已经安装了所需的每个组件,但我不知道我是否错过了一些。

0 个答案:

没有答案