Python离线部署

2024-05-30

在Python中,离线部署时解决依赖的常见方法是使用pip工具和requirements.txt文件。以下是步骤和示例代码:


创建requirements.txt文件,列出项目所需的所有依赖及其版本号。


flask==1.1.2

requests==2.25.1


离线环境的机器上,使用pip安装这些依赖。可以将requirements.txt文件和依赖包的wheel文件(.whl)或源码包一起传输。


如果有wheel文件:


pip install --no-index --find-links=/path/to/wheel/files -r requirements.txt


如果只有源码包,可以使用以下命令安装:


pip install --no-index --find-links=/path/to/source/archives -r requirements.txt


如果无法获取wheel文件,可以在有网络的机器上将依赖包打包为wheel格式:


pip download -r requirements.txt -d /path/to/store/wheels


将wheels文件夹中的依赖包拷贝到离线环境的机器上,并使用--find-links参数安装。


请注意,如果依赖项有特定于操作系统的二进制文件,这些依赖可能需要预先编译并准备好适合目标离线环境的wheel文件。