我从here下载了zbase62。我将tarball复制到我的离线linux机器上,并用tar -xzf解压缩,得到一个名为zbase62-1.2.0的文件夹。在包含此文件夹的目录中,

$ pip install --no-index --find-links=/path/to/zbase/zbase62-1.2.0 zbase62
Ignoring indexes: https://pypi.python.org/simple
Collecting zbase62
  Could not find any downloads that satisfy the requirement zbase62
  No distributions at all found for zbase62

我已经尝试了几个小的变化,但没有成功,即使我已经成功与其他软件包。是否可以脱机安装zbase62?在此之前,我只需修改路径变量。

最佳答案

以以下方式运行命令:

pip install zbase62

为我工作。只有在使用--no索引时,我才看到相同的错误。

09-11 06:34