Changeset c35e701
- Timestamp:
- Apr 20, 2016, 12:54:31 PM (9 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 5bec75d
- Parents:
- 013d0d7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
README.md
r013d0d7 rc35e701 71 71 https://aubio.org/documentation 72 72 73 Installation andBuild Instructions74 ------------------ -----------------73 Build Instructions 74 ------------------ 75 75 76 76 A number of distributions already include aubio. Check your favorite package … … 82 82 ./waf configure 83 83 ./waf build 84 sudo ./waf install85 84 86 85 If waf is not found in the directory, you can download and install it with: … … 89 88 90 89 aubio compiles on Linux, Mac OS X, Cygwin, and iOS. 90 91 Installation 92 ------------ 93 94 To install aubio library and headers on your system, use: 95 96 sudo ./waf install 97 98 To uninstall: 99 100 sudo ./waf uninstall 101 102 If you don't have root access to install libaubio on your system, you can use 103 libaubio without installing libaubio either by setting `LD_LIBRARY_PATH`, or by 104 copying it to `~/lib`. 105 106 On Linux, you should be able to set `LD_LIBRARY_PATH` with: 107 108 $ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD/build/src 109 110 On Mac OS X, a copy or a symlink can be made in `~/lib`: 111 112 $ mkdir -p ~/lib 113 $ ln -sf $PWD/build/src/libaubio.4.dylib ~/lib/libaubio.4.dylib 114 115 Note on Mac OS X systems older than El Capitan (10.11), the `DYLD_LIBRARY_PATH` 116 variable can be set as follows: 117 118 $ export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:$PWD/build/src 91 119 92 120 Credits and Publications
Note: See TracChangeset
for help on using the changeset viewer.