We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a538d9 commit 993e11eCopy full SHA for 993e11e
utils/webassembly/macos/install-dependencies.sh
@@ -2,10 +2,15 @@
2
3
set -ex
4
5
-if [ -n "$(brew list | grep python@2)" ]; then
6
- brew uninstall $(brew list | grep python@2)
+if ! command -v pip &> /dev/null
+then
7
+ PIP_COMMAND=pip3
8
+else
9
+ PIP_COMMAND=pip
10
fi
11
12
+$PIP_COMMAND install six
13
+
14
brew install cmake ninja llvm sccache
15
16
# Install latest wasmer
0 commit comments