@@ -2,7 +2,7 @@ PySoundFile
2
2
===========
3
3
4
4
`PySoundFile <https://github.com/bastibe/PySoundFile >`__ is an audio
5
- library based on libsndfile, CFFI and Numpy . Full documentation is
5
+ library based on libsndfile, CFFI and NumPy . Full documentation is
6
6
available on http://pysoundfile.readthedocs.org/.
7
7
8
8
PySoundFile can read and write sound files. File reading/writing is
@@ -39,22 +39,22 @@ might be removed in the future.
39
39
Installation
40
40
------------
41
41
42
- PySoundFile depends on the Python packages CFFI and Numpy , and the
42
+ PySoundFile depends on the Python packages CFFI and NumPy , and the
43
43
system library libsndfile.
44
44
45
45
To install the Python dependencies, I recommend using the `Anaconda
46
- <http://continuum.io/downloads#34 > `__ Distribution of Python. This
47
- will come with all dependencies pre-installed. To install them
46
+ <http://continuum.io/downloads> `__ distribution of Python 3 . This will
47
+ come with all dependencies pre-installed. To install the dependencies
48
48
manually, you can use the ``conda `` package manager, which will
49
49
install all dependencies using ``conda install cffi numpy `` (conda is
50
50
also available independently of Anaconda with ``pip install conda;
51
51
conda init ``).
52
52
53
- With CFFI and Numpy installed, you can use ``pip install pysoundfile ``
54
- to download and install the latest version of PySoundFile. On Windows
53
+ With CFFI and NumPy installed, you can use ``pip install pysoundfile ``
54
+ to download and install the latest release of PySoundFile. On Windows
55
55
and OS X, this will also install the library libsndfile. On Linux, you
56
56
need to install libsndfile using your distribution's package manager,
57
- for example ``sudo apt-get install libsndfile ``.
57
+ for example ``sudo apt-get install libsndfile1 ``.
58
58
59
59
Read/Write Functions
60
60
--------------------
0 commit comments