From 5a6ac14666c6bba769e9bf609a27ba8757aeff50 Mon Sep 17 00:00:00 2001 From: wqh17101 <597935261@qq.com> Date: Tue, 10 Aug 2021 23:59:33 +0800 Subject: [PATCH] Update README.md --- README.md | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2a5a9b9..ba0abf9 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ It is recommended for you to install setuptools to install and build. ``` pip install setuptools wheel ``` - +### Windows I select `x86_64-posix-seh-rev0` to build my wheel on Windows. ``` @@ -54,12 +54,24 @@ python setup.py build -c mingw32 to build whl ``` -python setup.py bdist_wheel +python setup.py build -c mingw32 bdist_wheel +``` + +to install +``` +python setup.py build -c mingw32 install +``` + +### Linux + +to build whl +``` +CC="gcc -std=gnu99" python setup.py bdist_wheel ``` to install ``` -python setup.py install +CC="gcc -std=gnu99" python setup.py install ``` ## Some errors you could meet: