Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/280.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python pipenv和车轮/预编译包_Python_Pip_Python Wheel_Pipenv - Fatal编程技术网

Python pipenv和车轮/预编译包

Python pipenv和车轮/预编译包,python,pip,python-wheel,pipenv,Python,Pip,Python Wheel,Pipenv,我目前正在为运行的第三方软件包使用buildhost $pip3 wheel--wheel dir=/root/wheelhouse-r/requirements.txt 成功构建后,我将目录/root/wheelhouse复制到一台新机器上,并通过运行 $pip3安装-r/requirements.txt--无索引--查找链接=/root/wheelhouse pipenv中是否有类似的内容? 我在wheel中找到的所有东西都是GitHub上的bug报告 请注意,复制venv目录不是一个选

我目前正在为运行的第三方软件包使用buildhost

$pip3 wheel--wheel dir=/root/wheelhouse-r/requirements.txt

成功构建后,我将目录
/root/wheelhouse
复制到一台新机器上,并通过运行

$pip3安装-r/requirements.txt--无索引--查找链接=/root/wheelhouse

pipenv
中是否有类似的内容? 我在
wheel
中找到的所有东西都是GitHub上的bug报告


请注意,复制venv目录不是一个选项。我正在使用docker容器,希望在系统范围内安装软件包。

我有同样的问题。似乎在源url中使用file://并不能达到目的。。。有没有办法将pipenv与本地源代码存储库一起使用?