Skip to content

Commit

Permalink
Merge pull request #1686 from doronz88/refactor/doc-linux-clarification
Browse files Browse the repository at this point in the history
doc: add clarification regarding linux docker environment
  • Loading branch information
joerick committed Jan 26, 2024
2 parents a1e3efb + 2a83588 commit fd0aae3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ You should see the builds taking place. You can experiment with options using en

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

cibuildwheel --platform linux
```

> CMD (Windows)

```bat
set CIBW_BEFORE_ALL='apt install libpng-dev'
set CIBW_BEFORE_ALL='uname -a'

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

```
[tool.cibuildwheel]
before-all = "apt install libpng-dev"
before-all = "uname -a"
```

Then invoke cibuildwheel, like:
Expand Down

0 comments on commit fd0aae3

Please sign in to comment.