squeaky-pl / japronto

Screaming-fast Python 3.5+ HTTP toolkit integrated with pipelining HTTP server based on uvloop and picohttpparser.
MIT License
8.61k stars 581 forks source link

pip install not working #104

Open bhch opened 6 years ago

bhch commented 6 years ago

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.

squeaky-pl commented 6 years ago

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.

dokazhi commented 6 years ago

So japronto for 3.7 python is not supported?

squeaky-pl commented 6 years ago

@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.

mcauto commented 5 years ago

same here.

I solved this command pip3 install https://github.com/squeaky-pl/japronto/archive/master.zip

vcoopman commented 2 years ago

@mcauto's solution works for me! Thanks.