Skip to content

Commit

Permalink
adding extra installation tips, fixes #74 and fixes #77
Browse files Browse the repository at this point in the history
  • Loading branch information
scfleming committed Jan 15, 2025
1 parent e81b16d commit 00bca20
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docs/astronify/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,22 @@ We recommend installing `homebrew` (https://brew.sh) and then running::

brew install portaudio portmidi libsndfile liblo

Still having issues?
^^^^^^^^^^^^^^^^^^^^
If you are still unable to install `astronify` (or `pyo`) via `pip`,
it's possible `pip` is looking for them in the wrong spot, depending on
how you've installed other packages in your envionrment. If so, try
adding the following flags to your shell of choice, open a new
terminal, and then run `pip install astronify` again::

# Example for .cshrc
setenv CFLAGS '-I/opt/homebrew/include/'
setenv LDFLAGS '-L/opt/homebrew/lib/'

# Example for .bashrc
export CFLAGS="-I/opt/homebrew/include/"
export LDFLAGS="-L/opt/homebrew/lib/"

Linux
~~~~~
We recommend installing the following with apt-get::
Expand Down

0 comments on commit 00bca20

Please sign in to comment.