如何为pycharm下载mysql?

时间:2018-03-23 18:30:21

标签: python mysql database pycharm

我无法在pycharm python项目中连接MySQL。我不知道我应该安装哪个版本来访问数据库以及如何安装。 我必须制作我的python项目库存管理系统。

目前我已经安装了pycharm,python IDE和anaconda

enter image description here

1 个答案:

答案 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如果有效