We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e98862 commit aa5aaebCopy full SHA for aa5aaeb
utils/build-osx.sh
@@ -13,10 +13,10 @@ function create_virtualenv_for_pyinstaller {
13
echo " --> Deleting .buildenv"
14
rm -rf .buildenv
15
fi
16
- # linux:
17
- # virtualenv --python=python3 .buildenv
18
- # we do:
19
- virtualenv --python=/usr/local/bin/python3 .buildenv
+ # This currently assumes to be run with: Python 3.10.4
+ # Important: pyinstaller needs a Python binary with shared library files
+ # With pyenv, for example, you get this like so: env PYTHON_CONFIGURE_OPTS="--enable-shared" pyenv install 3.10.4
+ virtualenv .buildenv
20
source .buildenv/bin/activate
21
pip3 install -e ".[test]"
22
}
0 commit comments