파이썬(156)
-
django.core.exceptions.ImproperlyConfigured: The MEDIA_URL and STATIC_URL settings must have different values
MEDIA_URL과 STATIC_URL은 같으면 안됨
2021.04.25 -
django.utils.datastructures.MultiValueDictKeyError: 'image'
오타로 인한 문제 entype => enctype으로 변경하면 해결됨 {% csrf_token %} MultiValueDictKeyError at /ocrupload/upload/ 'image' Request Method:POST Request URL:http://localhost/ocrupload/upload/ Django Version:3.1.6 Exception Type:MultiValueDictKeyError
2021.04.25 -
Django 파일업로드
settings.py MEDIA_URL = '/media/' MEDIA_ROOT = os.path.join(BASE_DIR, 'media') urls.py 웹에서 url로 서비스하려면, 아래 내용 추가 from django.conf import settings from django.conf.urls.static import static urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
2021.04.25 -
Django template 파일
아래 2개의 디렉토리 모두 template이 적용됨 /templates /app/templates 아래와 같은 경우, /temppates가 우선순위 높음 def index(request) : template_name = 'index.html' context = {} return render(request, template_name, context) 아래와 같은 경우, /app/temppates가 우선순위 높음 def index(request) : template_name = 'ocrupload/index.html' context = {} return render(request, template_name, context)
2021.04.24 -
Django Page not found(404)
mysite/urls.py에 'ocrupload'관련 내용이 빠져서 생긴 오류 urlpatterns = [ path('ocrupload/', include('ocrupload.urls')), path('mp3/', include('mp3.urls')), path('ocr/', include('ocr.urls')), path('gantt/', include('gantt.urls')), path('admin/', admin.site.urls), ]
2021.04.24 -
OCR Tesseract inttemp not found
이유는 잘 모르겠지만, shapetable 파일을 삭제하면 해결됨 mftraining -F ./ocr/work/kor2.font_properties -D ./static/ocr -U ./static/ocr/unicharset -O ./static/ocr/kor2-0.unicharset Reading ./static/ocr\kor2.12lottemartdreambold.exp0.tr ... id size():Error:Assert failed:in file ../../../src/ccutil/unicharset.cpp, line 294 cntraining Reading ./static/ocr\kor2.12lottemartdreambold.exp0.tr ... Clustering ... Wri..
2021.04.18