我当前正在使用buildhost运行第三方软件包
$ pip3 wheel --wheel-dir=/root/wheelhouse -r /requirements.txt
构建成功后,我将目录/root/wheelhouse
复制到新计算机上,并通过运行安装已编译的软件包
$ pip3 install -r /requirements.txt --no-index --find-links=/root/wheelhouse
pipenv
中是否存在类似内容?
我发现与wheel
结合使用的所有内容都是GitHub上的错误报告。
请注意,不能复制venv目录。我使用的是Docker容器,想在系统范围内安装软件包。