-
Notifications
You must be signed in to change notification settings - Fork 5
자주 나는 에러
zxcv859500 edited this page Dec 15, 2019
·
10 revisions
Windows에서 해결법
django-admin.py startproject mysite . 앞에 "python"을 입력한다.
~ > python django-admin.py startproject mysite .
C:\Python27\Lib\ntpath.py 파일을 열어
reload sys
sys.setdefaultencoding('cp949')
두 줄을 import 아래에 추가해준다.
pip 문제가 해결될 것이다.
pip install mysqlclient
를 통해 mysqlclient를 설치하다보면
Failed building wheel for mysqlclient
라는 에러를 접할 수 있다.
이는
sudo apt-get install libssl-dev
를 통해 해결할 수 있다.