Skip to content

Commit 255e073

Browse files
authored
Add bash in command line for build-wheels.sh (#151)
* Fix build-wheels.sh link + mention executable flag Some user may experienced with "permission denied" error. Explicitly mentioned that. * Add bash in command line for build-wheels.sh
1 parent f6030f4 commit 255e073

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ By default, `develop` will create a debug build, while `install` will create a r
104104

105105
### Binary wheels on linux
106106

107-
To build binary wheels on linux, you need to use the [manylinux docker container](https://github.com/pypa/manylinux). You also need a `build-wheels.sh` similar to [the one in the example](https://github.com/PyO3/setuptools-rust/blob/main/html-py-ever/build-wheels.sh), which will be run in that container.
107+
To build binary wheels on linux, you need to use the [manylinux docker container](https://github.com/pypa/manylinux). You also need a `build-wheels.sh` similar to [the one in the example](https://github.com/PyO3/setuptools-rust/blob/main/examples/html-py-ever/build-wheels.sh), which will be run in that container.
108108

109109
First, pull the `manylinux2014` Docker image:
110110

@@ -115,7 +115,7 @@ docker pull quay.io/pypa/manylinux2014_x86_64
115115
Then use the following command to build wheels for supported Python versions:
116116

117117
```bash
118-
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux2014_x86_64 /io/build-wheels.sh
118+
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux2014_x86_64 bash /io/build-wheels.sh
119119
```
120120

121121
This will create wheels in the `dist` directory:

0 commit comments

Comments
 (0)