Python Anywhere是否支持mysql.connector?

时间:2016-02-13 17:20:09

标签: python mysql flask

我是python的新手,但我已经在他们的服务器上运行了我的webapp。我的网站域名为there is undefined behaviour

问题是我使用mysql.connector作为数据库内容,每当在网站上访问数据库时,都会显示错误500。

我的问题是python是否支持mysql.connector?

1 个答案:

答案 0 :(得分:3)

是支持MySQL。如果是python 2.x,则需要使用import MySQLdb

如果您在Python 3中使用MySQL,则需要安装模块。如果您未使用virtualenv,请运行:

$ pip3.4 install --user mysqlclient

https://help.pythonanywhere.com/pages/UsingMySQL/