You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -12,14 +12,14 @@ OpenSoundscape is currently in active development. If you find a bug, please sub
12
12
13
13
#### Suggested Citation
14
14
```
15
-
Lapp, Rhinehart, Freeland-Haynes, Khilnani, and Kitzes, 2022. "OpenSoundscape v0.7.0".
15
+
Lapp, Rhinehart, Freeland-Haynes, Khilnani, Syunkova, and Kitzes, 2022. "OpenSoundscape v0.7.1".
16
16
```
17
17
18
18
# Installation
19
19
20
-
OpenSoundscape can be installed on Windows, Mac, and Linux machines. It has been tested on Python 3.7 and 3.8.
20
+
OpenSoundscape can be installed on Windows, Mac, and Linux machines. It has been tested on Python 3.7 and 3.8. However, for Apple Silicon (M1 chip) users, Python 3.9 is recommended and may be required to avoid dependency issues.
21
21
22
-
Most users should install OpenSoundscape via pip: `pip install opensoundscape==0.7.0`. Contributors and advanced users can also use Poetry to install OpenSoundscape.
22
+
Most users should install OpenSoundscape via pip: `pip install opensoundscape==0.7.1`. Contributors and advanced users can also use Poetry to install OpenSoundscape.
23
23
24
24
For more detailed instructions on how to install OpenSoundscape and use it in Jupyter, see the [documentation](http://opensoundscape.org).
Copy file name to clipboardexpand all lines: docs/installation/mac_and_linux.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Mac and Linux
2
2
3
-
OpenSoundscape can be installed on Mac and Linux machines with Python 3.7 (or 3.8) using the pip command `pip install opensoundscape==0.7.0`. We recommend installing OpenSoundscape in a virtual environment to prevent dependency conflicts.
3
+
OpenSoundscape can be installed on Mac and Linux machines with Python 3.7 (or 3.8) using the pip command `pip install opensoundscape==0.7.1`. We recommend installing OpenSoundscape in a virtual environment to prevent dependency conflicts.
4
4
5
5
Below are instructions for installation with two package managers:
6
6
*`conda`: Python and package management through Anaconda, a package manager popular among scientific programmers
@@ -15,7 +15,7 @@ Feel free to use another virtual environment manager (e.g. `virtualenvwrapper`)
15
15
* follow the [installation instructions](https://docs.anaconda.com/anaconda/install/) for your operating system.
16
16
* Create a Python 3.7 (or 3.8) conda environment for opensoundscape: `conda create --name opensoundscape pip python=3.7`
17
17
* Activate the environment: `conda activate opensoundscape`
18
-
* Install opensoundscape using pip: `pip install opensoundscape==0.7.0`
18
+
* Install opensoundscape using pip: `pip install opensoundscape==0.7.1`
19
19
* Deactivate the environment when you're done using it: `conda deactivate`
20
20
21
21
## Installation via `venv`
@@ -29,7 +29,7 @@ Run the following commands in your bash terminal:
29
29
* Make a directory for virtual environments and `cd` into it: `mkdir .venv && cd .venv`
30
30
* Create an environment called `opensoundscape` in the directory: `python3 -m venv opensoundscape`
31
31
* Activate/use the environment: `source opensoundscape/bin/activate`
32
-
* Install OpenSoundscape in the environment: `pip install opensoundscape==0.7.0`
32
+
* Install OpenSoundscape in the environment: `pip install opensoundscape==0.7.1`
33
33
* Once you are done with OpenSoundscape, deactivate the environment: `deactivate`
34
34
* To use the environment again, you will have to refer to absolute path of the virtual environments folder. For instance, if I were on a Mac and created `.venv` inside a directory `/Users/MyFiles/Code` I would activate the virtual environment using: `source /Users/MyFiles/Code/.venv/opensoundscape/bin/activate`
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f7603c5da90>: Failed to establish a new connection: [Errno -2] Name or service not known')': /simple/opensoundscape/
69
69
```
70
70
You may be able to solve it by going to System Settings, searching for “Proxy Settings,” and beneath “Automatic proxy setup,” turning “Automatically detect settings” OFF. Restart your terminal for changes to take effect. Then activate the environment and install OpenSoundscape using pip.
0 commit comments