首页 > 代码库 > python 爬虫使用方法分享(1)——安装python

python 爬虫使用方法分享(1)——安装python

环境:win10 64位 专业版 已激活

python官网:https://www.python.org/

安装版本:https://www.python.org/ftp/python/3.6.0/python-3.6.0b1-amd64.exe

安装过程中:

  选择 customize installation → next → 选中 add python to environment variables → install 这个选项会自动添加环境变量。

安装完后,打开cmd,输入python,如果显示:

Python 3.6.0b1 (default, Sep 12 2016, 18:11:36) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.

则说明python安装成功。

python 爬虫使用方法分享(1)——安装python