jackfrued / jackfrued/Python-100-Days
Day 42
Open
Nobody has claimed this yet.
- Dominant language
- Jupyter Notebook
- Stars
- 187k
- Forks
- 55.8k
- PR merge metrics
- No merged PRs in 30d
Description
配置关系型数据库MySQL的第二部分
原本是
import pymysql
pymysql.install_as_MySQLdb()
错误:mysqlclient 1.3.13 or newer is required; you have 0.9.3.
得变成
import pymysql
pymysql.version_info = (1, 3, 13, "final", 0)
pymysql.install_as_MySQLdb()
这个也可能是我个人问题,我就是提出来,让有同样问题的人可以借鉴下
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Locate the Day 42 relational-database/MySQL section and compare its setup instructions with the reported mysqlclient error and linked reference. Verify whether the workaround is relevant to the tutorial, then document the confirmed setup or caveat so readers with the same issue can follow it.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- django, mysql, python
- Domain
- databases, documentation
- Issue type
- Documentation
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 45/100