japronto
japronto copied to clipboard
pip install not working
pip install japronto
is not working because it can't find the package.
Reason is because it's missing from the package list page (https://pypi.python.org/simple/)
Surprisingly, if you go to https://pypi.python.org/simple/japronto/ the links are available. But that doesn't really matter because pip looks for the packages in the main page.
It's probable that you are trying to install for a platform that I dont build wheels for. If you look https://pypi.python.org/pypi/japronto/0.1.1 there are only wheels for Linux and Mac x86_64 Python 3.5 and 3.6.
You can alternatively try to pip install <a tarball address here>
given your platform and Python is supported.
So japronto for 3.7 python is not supported?
@dokazhi if you apply this patch https://github.com/squeaky-pl/japronto/pull/134 and compile it by hand it should work, but i didnt test myself.
same here.
I solved this command
pip3 install https://github.com/squeaky-pl/japronto/archive/master.zip
@mcauto's solution works for me! Thanks.