mirror of
https://github.com/jcefmaven/jcefbuild.git
synced 2025-09-17 21:06:38 +08:00
10 lines
293 B
Bash
10 lines
293 B
Bash
#!/bin/bash
|
|
|
|
PYTHON=/Library/Frameworks/Python.framework/Versions/Current/bin/python
|
|
|
|
brew install ninja
|
|
"$PYTHON" -m pip install --ignore-installed six
|
|
|
|
"$PYTHON" -m pip list
|
|
echo "from six.moves import configparser" | "$PYTHON" && echo "Success importing stuff from six moves python module"
|