Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 824 Bytes

python2.x-python3.x.md

File metadata and controls

21 lines (16 loc) · 824 Bytes

Python

安装

请点连接:Python.org

python 2.x & python 3.x

  • python 2.x 和 python 3.x 除了部分语法类似外,请把他们当成不同的编程语言。

  • 具体的区别: python2.x 与 python3.x主要差异

  • 选择python 3.x 的原因:

    • 虽然想接触了python 2.x,而且也用了大概两年时间,但是即将学习的内容需要一个稳定的版本,而不需要时不时的切换,所以选择了python 3.5.3这个版本(TensorFlow windows版本决定了只支持3.x)
  • pip 使用

>>> pip install `WHAT`      #安装
>>> pip uninstall `WHAT`    #删除
>>> pip list                #显示安装的pip包
  • TODO
    • python 与 c/c++ 交互