Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- 카카오 로그인
- docker
- 전역스타일
- typeorm
- requests
- 리액트
- route53
- Github Actions
- 배포
- nestjs
- CloudFront
- 자바스크립트
- ACM
- styled-component
- Django
- riotapi
- Recoil
- ci/cd
- s3
- e.preventDefault()
- 롤
- GlobalStyle
- e.stopPropagation()
- AWS
- Object.freeze()
- mysqlclient
- React
- Python
- liunx
- code-server
Archives
- Today
- Total
목록mysqlclient (1)
군붕이의 메모장

Django 에서 DB로 Mysql을 사용하려면 mysqlclient 가 필요하다. pip install mysqlclient 하지만 위 명령어를 입력하고나면 쉘에서 OSError 와 함께 에러가 발생한다. 이때 에러를 해결하려면 아래 패키지를 설치해주면 된다. # Debian, Ubuntu 계열 sudo apt-get install python3-dev default-libmysqlclient-dev build-essential # Redhat, CentOS 계열 sudo yum install python3-devel mysql-devel 그리고 나서 pip install mysqlclient 를 실행하면 정상적으로 설치가 진행된다. 출처 : https://stackoverflow.com/questio..
웹 개발/백엔드
2021. 7. 18. 17:12