emmm 有段时间咕咕了,然后一直在自闭,遇到了困难就不做了,再看看,再想想
权当记录了吧233333333
命令行如下:
flask-sqlacodegen "mysql://root:********@127.0.0.1/******" --tables "user" --outfile "xxxx.py" --flask
然后发现一堆报错
ModuleNotFoundError: No module named ‘MySQLdb’
出现该报错原因是因为在flask-sqlacodegen这个库中import是引入的是MySQLdb,而在python3.x已经是不支持MySQLdb
我才取的办法是
flask-sqlacodegen "mysql+pymysql://root:*****@127.0.0.1/*****" --tables "user" --outfile "xxxx.py" --flask
使用的是pymysql这样即可运行
其他办法是:
1.直接点到源码中将原来的118行__import__(“MySQLdb”)注释改为 return import(“pymysql”)
2.在cmd中直接安装mysqlclient,当然这个项目我选择的是使用系统的python编译器
参考博客or网站如下:
https://blog.csdn.net/IF_Albert/article/details/104869794 https://blog.csdn.net/qq_769932247/article/details/88188945 https://stackoverflow.com/questions/53024891/modulenotfounderror-no-module-named-mysqldb https://blog.csdn.net/zz_aiytag/article/details/108894007 https://blog.csdn.net/lsl520hah/article/details/103010183
|