【发布时间】:2016-08-14 11:39:09
【问题描述】:
这是一个我试图在 PyPi 上提供给其他人使用的小库。
https://github.com/rojavacrypto/python-libbitcoin
我使用这个命令上传包:
$ python setup.py sdist bdist_wheel upload
我也试过这个:
$ python setup.py sdist bdist_egg upload
两者似乎都运行良好,没有错误,甚至是listed on PyPi
但由于某种原因,当我尝试在 Ubuntu 上进行 pip 安装时,它给了我一个错误。
# pip3 install libbitcoin
Collecting libbitcoin
Could not find a version that satisfies the requirement libbitcoin (from versions: )
No matching distribution found for libbitcoin
为什么会这样?
谢谢
【问题讨论】:
标签: python python-3.x pip bitcoin