-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
installation a pain on macOS #183
Comments
See also #179. |
I got these working when I set up the MacOS build for CI in #181: UltraTrace/.circleci/config.yml Lines 72 to 89 in d2393e3
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
PyAudio
(doesn't seem to be installable other ways; see PortAudio/portaudio#708 ?)
git clone https://github.com/PortAudio/portaudio.git
./configure; make; sudo make install
export CFLAGS="-I
pwd/portaudio-v19/include/ -L
pwd/portaudio-v19/lib/.libs/"
(with appropriate directories)export CFLAGS="-I
pwd/include/ -L
pwd/lib/.libs/"
pip install pyaudio
libmagic (special instructions no longer needed as of 2023-06-27)
brew install libmagic
git clone https://github.com/dveselov/python-libmagic.git
python setup.py install
pip uninstall python-magic; pip install python-magic-bin==0.4.14
The text was updated successfully, but these errors were encountered: