为什么我的 Python3 pip 包在 PyPi 上显示时无法正常工作?
Why is my Python3 pip package not working eventhough it shows on PyPi?
这是一个我试图在 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
为什么会这样?
谢谢
你的包在 PyPI 中的名称是 "python-libbitcoin":
pip3 install python-libbitcoin
给你:
Downloading/unpacking python-libbitcoin
http://pypi.python.org/simple/python-libbitcoin/ uses an insecure transport scheme (http). Consider using https if pypi.python.org has it available
Downloading python-libbitcoin-1.2.2.tar.gz
Running setup.py (path:/home/lukas/x/build/python-libbitcoin/setup.py) egg_info for package python-libbitcoin
这是一个我试图在 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
为什么会这样?
谢谢
你的包在 PyPI 中的名称是 "python-libbitcoin":
pip3 install python-libbitcoin
给你:
Downloading/unpacking python-libbitcoin
http://pypi.python.org/simple/python-libbitcoin/ uses an insecure transport scheme (http). Consider using https if pypi.python.org has it available
Downloading python-libbitcoin-1.2.2.tar.gz
Running setup.py (path:/home/lukas/x/build/python-libbitcoin/setup.py) egg_info for package python-libbitcoin