Changeset 92c83ccc for python/README


Ignore:
Timestamp:
Mar 8, 2013, 3:30:45 PM (12 years ago)
Author:
Paul Brossier <piem@piem.org>
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:
e6f7a4a
Parents:
98c0f92
Message:

python/: move generator.py to lib, improve README, remove env_ files, update MANIFEST.in

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/README

    r98c0f92 r92c83ccc  
    1313You should be able to build the aubio python module out of the box:
    1414
    15     $ ./build_osx
     15    $ python setup.py build
    1616
    17 This should work on linux based systems as well as recent versions of OS X
    18 (10.8.x). Let me know if you have issues on your platforms.
     17To use the python module without installing it, set PYTHONPATH:
     18
     19    $ export PYTHONPATH=$PYTHONPATH:$PWD/`ls -rtd build/lib.* | head -1`:$PWD/tests
     20
     21And LD_LIBRARY_PATH:
     22
     23    $ export LD_LIBRARY_PATH=$PWD/../build/src
     24
     25Or on macosx systems:
     26
     27    $ export DYLD_LIBRARY_PATH=$PWD/../build/src
     28
     29The you should be able to run the tests:
     30
     31    $ ./tests/run_all_tests
     32
     33And to try out the demos:
     34
     35    $ ./demos/demo_source.wav ~/test.wav
    1936
    2037Additional tools
Note: See TracChangeset for help on using the changeset viewer.