python小技巧汇总

1、获取系统变量

    strA=os.getenv("strA")

 

2、下载python安装包

pypi.org,下载.whl包文件

使用pip/pip3安装包,pip install --no-index 下载的.whl包文件

 

 

离线安装包方法

1)找一台能联网的机器,安装需要的程序包

pip install ansible

2)下载包文件

$ pip freeze > requirements.txt
$ pip download -r requirements.txt -d /home/prouser/pip_download

3)在离线机器上操作

$ pip install -r ./requirements.txt --no-index --find-links=file:///home/prouser/pip_download

你可能感兴趣的:(python小技巧汇总)