windows x64 安装 python 环境

下载 python 安装包

https://www.python.org/
windows x64 安装 python 环境_第1张图片
windows x64 安装 python 环境_第2张图片
下载完安装即可。

配置环境变量

我的安装目录是 C:\Python27 (python.exe 所在目录)
windows x64 安装 python 环境_第3张图片
然后在 Path 里直接引用即可 %PYTHON_HOME%

控制台查看版本 python --version
windows x64 安装 python 环境_第4张图片
这就算成功了

下载第三方库

进入python安装目录的Scripts文件夹(C:\Python27\Scripts),里面有一个pip工具。
windows x64 安装 python 环境_第5张图片
直接 cmd 打开命令窗口

安装 requests 库

pip install requests

测试爬虫

windows x64 安装 python 环境_第6张图片

# coding=UTF-8
import requests, io

headers = {
    'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36'
}


# 定义函数
def gettest():
    response = requests.get(
        "https://www.baidu.com",
        headers=headers)
    response.encoding = "utf-8"  # 设置接收编码格式

    print("状态码:" + str(response.status_code))  # 打印状态码

    # print(response.text)  # 输出爬取的信息

    # 保存文件
    with io.open("../pachong/test.txt", "w", encoding="utf-8") as file:
        file.write(response.text)
        file.close()

# 调用函数
gettest()

你可能感兴趣的:(python)