Update install_macos_dependencies.sh

This commit is contained in:
Friwi 2023-12-19 11:24:22 +01:00 committed by GitHub
parent ff5fc9020a
commit be672489ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,9 @@
#!/bin/bash #!/bin/bash
brew install ninja PYTHON=/Library/Frameworks/Python.framework/Versions/Current/bin/python
python3 -m pip install --ignore-installed six
/Library/Frameworks/Python.framework/Versions/Current/bin/python -m pip list brew install ninja
echo "import six.moves" | /Library/Frameworks/Python.framework/Versions/Current/bin/python "$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"