VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 编程开发 > python爬虫 >
  • python2与python3属性差异总结4

第三方工具包差异
我们在 pip 官方下载源 pypi 搜索 Python2.7 和 Python3.5 的第三方工具包数可以发现,Python2.7版本对应的第三方工具类目数量是 28523,而Python3.5 版本的数量是 12457,这两个版本在第三方工具包支持数量差距相当大。

工具安装问题
windows 环境Python2 无法安装 mysqlclient,而Python3 无法安装 MySQL-python、 flup、functools32、Gooey、Pywin32、 webencodings。matplotlib 在 python3 环境中安装报错:The following required packages can not bebuilt:freetype, png。需要手动下载安装源码包安装解决。scipy 在 Python3 环境中安装报错,numpy.distutils.system_info.NotFoundError,需要自己手工下载对应的安装包,依赖 numpy,pandas 必须严格根据 python 版本、操作系统、64 位与否。

运行matplotlib 后发现基础包 numpy+mkl 安装失败,需要自己下载,国内暂无下载源centos 环境下Python2 无法安装 mysql-python 和 mysqlclient 包,报错:EnvironmentError: mysql_config notfound,解决方案是安装 mysql-devel 包解决。使用 matplotlib 报错:no module named _tkinter,安装 Tkinter、tk-devel、tc-devel 解决。pywin32 也无法在 centos 环境下安装。

编码 
Py3.X源码文件默认使用utf-8编码,这就使得以下代码是合法的: 
   >>> 中国 = 'china' 
   >>>print(中国) 
   china 



相关教程