Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[joss] Add Conda environment #172

Merged
merged 2 commits into from
Oct 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,17 +64,11 @@
1) Create environment:

```shell
conda create -n diart python=3.8
conda env create -f diart/environment.yml
conda activate diart
```

2) Install audio libraries:

```shell
conda install portaudio pysoundfile ffmpeg -c conda-forge
```

3) Install diart:
2) Install the package:
```shell
pip install diart
```
Expand Down
12 changes: 12 additions & 0 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: diart
channels:
- conda-forge
- defaults
dependencies:
- python=3.8
- portaudio=19.6.*
- pysoundfile=0.12.*
- ffmpeg[version='<4.4']
- pip
- pip:
- .