在没有互联网环境下配置python环境,常常需要离线安装。以下基于centos7、python3.6环境。
在互联网环境,如何获取需要的包:
获取python3和pip3安装包:
在https://mirrors.aliyun.com/centos/7/os/x86_64/Packages/可下载,或者在互联网环境执行yum install
后获取缓存的rpm包(需在install前先修改/etc/yum.conf
中keepcache=1
,缓存在/var/cache/yum
目录)
libtirpc-0.2.4-0.16.el7.x86_64.rpm
python3-3.6.8-17.el7.x86_64.rpm
python3-libs-3.6.8-17.el7.x86_64.rpm
python3-pip-9.0.3-8.el7.noarch.rpm
python3-setuptools-39.2.0-10.el7.noarch.rpm
获取.whl
包:
在互联网环境执行pip3 download xxx
可下载指定包,还可指定版本,例如:
pip3 download pyinstaller==4.2.0
有些下载到的是.whl
文件,可以直接放在离线环境安装,而有些下载到的可能是一个.tar.gz
包,这种情况需要编译才能得到.whl
包,而编译过程经常还要配置其他的环境,所以最好在有网的环境编译好.whl
包(有网环境比较方便找额外的编译依赖环境)。怎么编译呢,执行pip3 wheel xxx
就可以了(xxx表示包名,同样也可指定版本,例如pip3 wheel pyinstaller==4.2.0
),(如果没有安装wheel需先安装它:pip3 install wheel
)。
将需要的rpm包和whl包都准备好就可以导入到离线环境了。下面的过程是在离线环境操作
安装如下rpm包:
libtirpc-0.2.4-0.16.el7.x86_64.rpm
python3-3.6.8-17.el7.x86_64.rpm
python3-libs-3.6.8-17.el7.x86_64.rpm
python3-pip-9.0.3-8.el7.noarch.rpm
python3-setuptools-39.2.0-10.el7.noarch.rpm
安装(pip3 install后加上whl文件路径即可):
pip3 install xxx.whl
或:
pip3 install *.whl