python_Mac 版python安装MySQL库报错:IOError: Could not build the egg.

  • 为了安装这个库苦恼了1个礼拜,真是煎熬,最终终于找到了方法

  • Mysql 库的安装

  • 第一种方法:
    1.通过easy_install 下载

  • 第二种方法:
    1.通过pip 下载
    网上教程一大堆 ,我看了不下50篇文章,最终没有解决我的问题

  • 我的方法 :

通过pycharm 安装第三方依赖库 ,真的很强大啊,佩服的五体投地
步骤:
- 1.
File -》Default Settings-》Project Interperter -》选择 自己的python库-》点击左下角加号


python_Mac 版python安装MySQL库报错:IOError: Could not build the egg._第1张图片
然后操作.png

- 2.在搜索框中输入依赖库名称:MySQL-python,然后点击下载安装包,pycharm会自动安装完成的


python_Mac 版python安装MySQL库报错:IOError: Could not build the egg._第2张图片
Paste_Image.png

- 3.一般不需要手动移动插件!如果不生效可以这样:查看python安装目录会多一个site-packages文件夹,找到他然后将里面的文件全部考到主site-packages目录中
python_Mac 版python安装MySQL库报错:IOError: Could not build the egg._第3张图片
新生成的目录.png
python_Mac 版python安装MySQL库报错:IOError: Could not build the egg._第4张图片
移动到老路径中.png
注意:如果找不到python的路径,则还是在pycharm中,文件夹上右键选中copy path,然后通过finder-》前往文件夹-》 粘贴路径,进行复制粘贴
  • 4 .最后在代码中测试:

    import MySQL
    大功告成!

以此类推其它的依赖库通过pycharm岂不是很方便

@ 晴天 - 2016-09-05 12:42:20

你可能感兴趣的:(python_Mac 版python安装MySQL库报错:IOError: Could not build the egg.)