Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ederwander authored Jul 22, 2020
1 parent 9060bb9 commit d2651d6
Showing 1 changed file with 33 additions and 3 deletions.
36 changes: 33 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,42 @@ One C compiler

NumPy 1.0 or later

==INSTALLATION==
==WINDOWS INSTALLATION==
==========

PyAutoTune is packaged as Python and C source using distutils. To install, run the following command:
PyAutoTune is packaged as Python and C source using distutils. To install:

pip install setuptools numpy pyaudio

Setuptools - used for compiler
Numpy - used for audio arrays
pyaudio - play and test code examples

Download and install one compliler, for example you can choose mingw 32 or 64 bits in windows SO
https://sourceforge.net/projects/mingw/files/latest/download
https://sourceforge.net/projects/mingw-w64/

Create one file distutils.cfg in your python distutils PATH instalation Ex:C:\Python37\Lib\distutils

> [build]
> compiler=mingw32

> [build_ext]
> include_dirs= C:\Python37\Lib\site-packages\numpy\core\include

Set the PAH to you python and mingw, ex in CMD.

set PATH=C:\MinGW\bin;C:\Python37;%PATH%

if you installed mingw 64bits point the path correctly

Now you're ready to compile:

python.exe setup.py install


python setup.py install

==EXAMPLES==
==========
Expand Down

0 comments on commit d2651d6

Please sign in to comment.