Changeset 0f3ee60
- Timestamp:
- Aug 26, 2016, 3:33:25 PM (8 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:
- e635771
- Parents:
- 8c00e7b
- Location:
- doc
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/index.rst
r8c00e7b r0f3ee60 108 108 109 109 .. toctree:: 110 :maxdepth: 1110 :maxdepth: 2 111 111 112 download 112 113 installing 113 114 python_module -
doc/installing.rst
r8c00e7b r0f3ee60 1 1 .. highlight:: bash 2 2 3 Installing aubio4 ============== ==3 Building aubio 4 ============== 5 5 6 A number of distributions already include aubio. Check your favorite package 7 management system, or have a look at the `download page 8 <http://aubio.org/download>`_. 6 .. note:: 7 To download a prebuilt version of aubio, see :ref:`download`. 9 8 10 aubio uses `waf <https://waf.io/>`_ to configure, compile, and test the source.11 A copy of ``waf`` is included along aubio, so all you need is a ``terminal``12 a nd a recent ``python``installed.9 aubio uses `waf`_ to configure, compile, and test the source. 10 A copy of waf is included in aubio tarball, so all you need is a terminal, 11 a compiler, and a recent version of python installed. 13 12 14 Source code15 ----------- 13 Latest release 14 -------------- 16 15 17 Check out the `download page <http://aubio.org/download>`_ for more options: 18 http://aubio.org/download. 19 20 The latest stable release can be found at http://aubio.org/pub/:: 16 The **latest stable release** can be downloaded from https://aubio.org/download:: 21 17 22 18 $ curl -O http://aubio.org/pub/aubio-0.4.3.tar.bz2 … … 24 20 $ cd aubio-0.4.3 25 21 26 The latest develop branch can be obtained with:: 22 Git repository 23 -------------- 24 25 The **latest git branch** can be obtained with:: 27 26 28 27 $ git clone git://git.aubio.org/git/aubio 29 28 $ cd aubio 29 30 The following command will fetch the correct `waf`_ version (not included in 31 aubio's git):: 32 33 $ ./scripts/get_waf.sh 34 35 .. note:: 36 37 Windows users without `Git Bash`_ installed will want to use the following 38 commands instead: 39 40 .. code:: bash 41 42 $ curl -fsS -o waf https://waf.io/waf-1.8.22 43 $ curl -fsS -o waf.bat https://raw.githubusercontent.com/waf-project/waf/master/utils/waf.bat 44 30 45 31 46 Compiling … … 36 51 $ ./waf configure 37 52 38 Check out the available options using ``./waf configure --help | less``. Once53 Check out the available options using ``./waf configure --help``. Once 39 54 you are done with configuration, you can start building:: 40 55 … … 45 60 46 61 $ sudo ./waf install 62 63 .. note:: 64 Windows users should simply run ``waf``, without the leading ``./``. For 65 instance: 66 67 .. code:: bash 68 69 $ waf configure build 47 70 48 71 Cleaning … … 62 85 63 86 $ ./waf distclean 87 88 .. _waf: https://waf.io/ 89 90 .. _Git Bash: https://git-for-windows.github.io/ 91 92 .. toctree:: 93 :maxdepth: 2
Note: See TracChangeset
for help on using the changeset viewer.