Django - The process cannot access the file becaus

2019-07-26 03:15发布

问题:

I'm trying to run Django on my Windows 10, I'm sort of newbie on Django, I'm using Compressor Toolkit, my problem is, I can run the manage.py but the localhost says

base.html, error at line 9 The process cannot access the file because it is being used by another process.

<!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 %}

My friend could run the compressor smoothly from his Linux, I've installed every component needed but I dont know if I missed some.