我无法在pycharm python项目中连接MySQL。我不知道我应该安装哪个版本来访问数据库以及如何安装。 我必须制作我的python项目库存管理系统。
答案 0 :(得分:0)
从Windows命令提示符/ Linux Shell
使用滚轮
安装RewriteEngine On
# If an existing asset or directory is requested go to it as it is
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f [OR]
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d
RewriteRule ^ - [L]
# If the requested resource doesn't exist, use index.html
RewriteRule ^ /index.html
从中下载32位或64位版本 http://www.lfd.uci.edu/~gohlke/pythonlibs/#mysql-python
<强> 64位强>
pip install wheel
<强> 32位强>
pip install MySQL_python-1.2.5-cp27-none-win_amd64.whl
Upvote如果有效