如何使用pipenv让mysqlclient正常工作?

18 浏览
0 Comments

如何使用pipenv让mysqlclient正常工作?

在使用'pipenv install mysqlclient'安装mysqlclient并尝试运行服务器后,我遇到了以下错误:

django.core.exceptions.ImproperlyConfigured: 加载MySQLdb模块时出错。

你是否安装了mysqlclient?

0
0 Comments

问题出现的原因是在使用pipenv安装mysqlclient时出现了错误。解决方法是通过运行'pipenv shell'命令来激活虚拟环境。

0