Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
wqh17101 authored Aug 10, 2021
1 parent 7b3db10 commit 5a6ac14
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

```
Expand All @@ -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:
Expand Down

0 comments on commit 5a6ac14

Please sign in to comment.