File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -20,22 +20,28 @@ Some details about the implementation can be found in my [thesis](https://doi.or
20
20
It's easiest to start with something like [ Anaconda] ( https://www.anaconda.com/distribution/ ) as a Python distribution.
21
21
You'll need Python >= 3.6 .
22
22
23
- You can simply install via pip:
23
+ You can simply install the latest release with pip:
24
24
` pip install spaudiopy `
25
25
26
- Or if you want to go into detail and install from source:
26
+ This also works for the latest [ commit] ( https://github.com/chris-hld/spaudiopy/ ) :
27
+ ` pip install git+https://github.com/chris-hld/spaudiopy.git@master `
28
+
29
+ ### From Source
30
+
31
+ Alternatively, if you want to go into detail and install the package from source:
27
32
28
33
1 . Create a conda environment, called e.g. 'spaudio':
29
- ` conda create --name spaudio python=3.6 anaconda portaudio `
34
+ ` conda create --name spaudio python=3.8 anaconda portaudio `
30
35
2 . Activate this new environment:
31
36
` conda activate spaudio `
32
37
33
- Get the latest source code from GitHub:
38
+ Get the latest source code from GitHub:
34
39
` git clone https://github.com/chris-hld/spaudiopy.git && cd spaudiopy `
35
40
36
41
Install the package and remaining dependencies:
37
42
` pip install -e . `
38
43
44
+
39
45
## Contributions
40
46
41
47
This is meant to be an open project and contributions or feature requests are always welcome!
Original file line number Diff line number Diff line change @@ -455,7 +455,7 @@ def max_rE_weights(N):
455
455
456
456
See Also
457
457
--------
458
- :py:func:`spaudiopy.process .unity_gain` : Unit amplitude compensation.
458
+ :py:func:`spaudiopy.sph .unity_gain` : Unit amplitude compensation.
459
459
460
460
References
461
461
----------
You can’t perform that action at this time.
0 commit comments