Skip to content

Commit fd0aae3

Browse files
authored
Merge pull request #1686 from doronz88/refactor/doc-linux-clarification
doc: add clarification regarding linux docker environment
2 parents a1e3efb + 2a83588 commit fd0aae3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/setup.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@ You should see the builds taking place. You can experiment with options using en
6161

6262
```sh
6363
# run a command to set up the build system
64-
export CIBW_BEFORE_ALL='apt install libpng-dev'
64+
export CIBW_BEFORE_ALL='uname -a'
6565

6666
cibuildwheel --platform linux
6767
```
6868

6969
> CMD (Windows)
7070

7171
```bat
72-
set CIBW_BEFORE_ALL='apt install libpng-dev'
72+
set CIBW_BEFORE_ALL='uname -a'
7373

7474
cibuildwheel --platform linux
7575
```
@@ -82,7 +82,7 @@ You should see the builds taking place. You can experiment with options using en
8282

8383
```
8484
[tool.cibuildwheel]
85-
before-all = "apt install libpng-dev"
85+
before-all = "uname -a"
8686
```
8787

8888
Then invoke cibuildwheel, like:

0 commit comments

Comments
 (0)