欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

在python3.6环境下使用Flask框架的各种问题解决方案

程序员文章站 2022-03-20 14:05:34
...

1.python manage.py db migrate
from flask_sqlalchemy import SQLAlchemy
ImportError: No module named ‘MySQLdb’
python3之后不在支持mysqldb,使用mysqlclient的wheel安装代替
下载地址:https://pypi.org/project/mysqlclient/1.3.10/#files
在pip目录(C:\ProgramData\Anaconda3\Scripts)下pip install ****.wheel文件

报错:***  is not a supported wheel on this platform
原因是现在的wheel文件不符合python版本,
# 64位
import pip._internal
print(pip_internal.pep425tags.get_supported())
#32位
 import pip
print(pip.pep425tags.get_supported())

[('cp35', 'cp35m', 'win_amd64'), ('cp35', 'none', 'win_amd64'), ('py3', 'none', 'win_amd64'), ('cp35', 'none', 'any'), ('cp3', 'none', 'any'), ('py35', 'none', 'any'), ('py3', 'none', 'any'), ('py34', 'none', 'any'), ('py33', 'none', 'any'), ('py32', 'none', 'any'), ('py31', 'none', 'any'), ('py30', 'none', 'any')]

虽然pycharm提示的是py3.6版本 但是要下载cp35的wheel安装。