Django - The process cannot access the file because it is being used by another process

倾然丶 夕夏残阳落幕 提交于 2019-12-13 00:06:21

问题


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.

来源:https://stackoverflow.com/questions/43659103/django-the-process-cannot-access-the-file-because-it-is-being-used-by-another

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!