전체 글 372

django pillow 설치 오류 The headers or library files could not be found for zlib, a required dependency when compiling Pillow from source.

During handling of the above exception, another exception occurred: Traceback (most recent call last): File "", line 1, in File "C:\Users\jjs95\AppData\Local\Temp\pip-install-y8jrfcfl\Pillow\setup.py", line 888, in raise RequiredDependencyException(msg) __main__.RequiredDependencyException: The headers or library files could not be found for zlib, a required dependency when compiling Pillow from..

에러 2020.04.11

django 문제 해결

django 프로젝트를 하며 문제가 생겼다. 댓글 달기 기능인데 댓글을 달면 무조건 index로 설정해 놓았다. 근데 디테일 페이지를 추가하니 index에서 댓글을 달아도 index로가고 (원래 의도한바) detail에서 댓글을 달아도 index로 가는 것이다. (안돼) 그래서 해결방법을 찾아보았다. # 함수를 두개 만든다. @login_required def c_post(request, post_id): if request.method =='POST': comment = get_object_or_404(Post, id=post_id) comment_text = request.POST.get('comment_text') comment_user = User.objects.get(username = requ..

끄적끄적 2020.03.30