Closed openalmeida closed 4 years ago
test
folder files for now?pip install --upgrade git+https://github.com/YoSTEALTH/Liburing
datestamp
should have worked as its preinstalled here https://github.com/YoSTEALTH/Liburing/blob/master/pyproject.toml#L2I will upload newer version to pypy once i get a chance to do more tests
thanks for reply.
test
folder files seems not relate to Python's asyncio style coding what io_uring and liburing may mainly focus on, and liburing for python binding is brand new (i wanna it working with the async and await keywords in a right way officially) especially for newbie like me.
yes, pip install --upgrade git+https://github.com/YoSTEALTH/Liburing
success.
last time i failed because:
pip-3 -U pip
solved datestamp
not found issue.so, patch setup.py a PEP 517 support checking maybe an idea for fool proof ?
thanks again for spending of your time.
Python liburing is really low level library to something like asyncio. There are plans for Trio
to adapt to using io_uring
https://github.com/python-trio/trio/issues/932 its still very much in early planning stages, most of the feature needed are only in newer linux version 5.5+ and such...
Hello, Its so happy to find this library released as the first io_uring api stuff for Python.
As a newbie for the io_uring and underlayer Kernel IO API, too many details are required to learn it. Could you provide some asyncio style based python examples for understanding ?
p.s python-3.6.8 with pip-9.0.3 install liburing at newest released Centos (version 8.1.1911), will case
datestamp
ModuleNotFoundError about"file liburing/setup.py", line 3
, thuspip-3 install liburing
will fail if not manually runpip-3 install datestamp
first.p.s.s
libs/liburing seems should git clone from
https://github.com/axboe/liburing
which is empty, and case thepip install liburing
process failure.unless clone this repo to local directory and overwriting libs/liburing by
https://github.com/axboe/liburing
, and thenpip install path/to/this/repo
works.at least works for me :} .