时间:2021-05-22
最近运维上需要在测试环境调用http的post请求,实现自动化日切,我看了下我会的编程,也就python能符合我的要求,且简单好操作。但是在实际操作过程遇到了一些问题,其中最大的就是测试环境的机器是外网隔离的,没法连外网进行直接安装部分模块,通过搜索和实践之后,简单说下我的经验。
机器环境
操作系统:Windows Server 2012 x64
python3安装
从 [官网] 下载最新的适合windows 的安装包。
下载下来的python-3.7.4-amd64.exe,直接拷贝到测试环境的机器上,双击安装即可,需要注意的是,最好勾选 AddPython 3.7 to PATH,这样后期直接在cmd窗口中就可以调用python命令了。
requests模块的依赖包检查
在可以上网且已安装python的机器上检查requests模块需要哪些依赖包,要是没有依赖包,直接下载一个直接安装最好。
在CMD命令窗口中输入 pip show requests
C:\Users\Laycher>pip show requestsName: requestsVersion: 2.18.4Summary: Python HTTP for Humans.Home-page: http://python-requests.orgAuthor: Kenneth ReitzAuthor-email: me@kennethreitz.orgLicense: Apache 2.0Location: d:\program files\python3\lib\site-packagesRequires: chardet, urllib3, idna, certifiRequired-by:发现需要chardet,urllib3,idna,certifi
下载依赖包模块和requests模块
在网站 https://www.lfd.uci.edu/~gohlke/pythonlibs 上找到相应的程序,下载。
certifi-2019.9.11-py2.py3-none-any.whlchardet-3.0.4-py2.py3-none-any.whlidna-2.8-py2.py3-none-any.whlrequests-2.22.0-py2.py3-none-any.whlurllib3-1.25.6-py2.py3-none-any.whl安装模块
将以上下载的文件传到测试环境。离线装模块。
安装命令为 pip install XXXXX.whl
切记,先安装依赖包,如果直接安装requests,由于有依赖包,还是会去连外网找依赖包。
D:\软件>pip install certifi-2019.9.11-py2.py3-none-any.whlProcessing d:\软件\certifi-2019.9.11-py2.py3-none-any.whlInstalling collected packages: certifiSuccessfully installed certifi-2019.9.11D:\软件>pip install chardet-3.0.4-py2.py3-none-any.whlProcessing d:\软件\chardet-3.0.4-py2.py3-none-any.whlInstalling collected packages: chardetSuccessfully installed chardet-3.0.4D:\软件>pip install idna-2.8-py2.py3-none-any.whlProcessing d:\软件\idna-2.8-py2.py3-none-any.whlInstalling collected packages: idnaSuccessfully installed idna-2.8D:\软件>pip install urllib3-1.25.6-py2.py3-none-any.whlProcessing d:\软件\urllib3-1.25.6-py2.py3-none-any.whlInstalling collected packages: urllib3Successfully installed urllib3-1.25.6D:\软件>pip install requests-2.22.0-py2.py3-none-any.whlProcessing d:\软件\requests-2.22.0-py2.py3-none-any.whlRequirement already satisfied: idna in c:\users\administrator\appdata\local\programs\python\python37\lib\site-packages (from requests==2.22.0) (2.8)Requirement already satisfied: chardet in c:\users\administrator\appdata\local\programs\python\python37\lib\site-packages (from requests==2.22.0) (3.0.4)Requirement already satisfied: urllib3 in c:\users\administrator\appdata\local\programs\python\python37\lib\site-packages (from requests==2.22.0) (1.25.6)Requirement already satisfied: certifi in c:\users\administrator\appdata\local\programs\python\python37\lib\site-packages (from requests==2.22.0) (2019.9.11)Installing collected packages: requestsSuccessfully installed requests-2.22.0安装包汇集
我汇集了我这边的安装包,[点此下载 ]
其他办法
网上还有很多其他办法,比如在干净的能上外网的机器上,安装python,然后pip install 安装需要的模块,然后直接把python安装目录直接拷到离线环境中,那就直接可以用了。
还有的是通过命令 pip freeze > requiresment.txt ,生成已经安装的模块信息,然后再下载。具体可以搜索看看。
总结
以上所述是小编给大家介绍的Python3离线安装Requests模块问题,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
python中使用requests模块http请求时,发现中文参数不会自动的URL编码,并且没有找到类似urllib(python3)模块中urllib.par
解决Python3控制台输出InsecureRequestWarning的问题问题:使用Python3requests发送HTTPS请求,已经关闭认证(veri
在python中我们可以使用requests模块来实现调用远程接口一:安装requests模块pipinstallrequests二:使用requests模块实
前提环境准备python3+pillow+pyautogui先提前安装好python3以及pillow和pyautogui模块这里介绍一下模块安装方法pipin
之前python安装模块要在网络上下载,从python2.7.9之后,以及python3,python就自带pip这个命令,能够快速的安装模块1,首先打开pyt