From 41b17e44f4f662e0dbdc3d6f8aeff2eb67dc91ca Mon Sep 17 00:00:00 2001 From: nihui Date: Tue, 27 Feb 2024 17:32:16 +0800 Subject: [PATCH] Update README.md --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 6a705e3..70b442c 100644 --- a/README.md +++ b/README.md @@ -96,14 +96,14 @@ pip3 install . Use ruapu in python -```shell -$ python3 ->>> import ruapu ->>> ruapu.supports("avx2") -True ->>> ruapu.supports(isa="avx2") -True -... +```python +import ruapu + +ruapu.supports("avx2") +# True + +ruapu.supports(isa="avx2") +# True ```