我已经安装了IDLE Python 3.4.2 &我想为Python3.4安装MySQL-Connector 2.7。我已经从http://dev.mysql.com/downloads/connector/python/下载了mysql-connector2.7。我已经尝试安装了很多次了,但是总是显示“找不到Python v3.4”,尽管它已经在系统中&Python的系统路径是正确的。请帮帮我。
发布于 2014-12-03 19:57:13
实际上,它应该是可行的
1. get python connector from MySQL
2. unzip to a dir
3. cd dir
4. python setup.py install 在步骤4中,它从系统路径中搜索python命令,应该可以找到。如果不是,那么我猜测是路径没有正确设置
https://stackoverflow.com/questions/27270608
复制相似问题