在Flask中如果有连接mysql的功能模块,可能会报
<pre>
<code>ImportError: No module named MySQLdb</code>错误
</pre>
这是因为python少了mysql-python包所导致的,解决方法如下:
<pre>
<code>pip install mysql-python</code>
</pre>
就可以解决了。
在Flask中如果有连接mysql的功能模块,可能会报
<pre>
<code>ImportError: No module named MySQLdb</code>错误
</pre>
这是因为python少了mysql-python包所导致的,解决方法如下:
<pre>
<code>pip install mysql-python</code>
</pre>
就可以解决了。