mirror of
https://github.com/YuzuZensai/spleeter.git
synced 2026-01-06 04:32:43 +00:00
13 lines
386 B
Bash
13 lines
386 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
######################################################################
|
||
|
|
# Custom entrypoint that activate conda before running spleeter.
|
||
|
|
#
|
||
|
|
# @author Félix Voituret <fvoituret@deezer.com>
|
||
|
|
# @version 1.0.0
|
||
|
|
######################################################################
|
||
|
|
|
||
|
|
# shellcheck disable=1091
|
||
|
|
. "/opt/conda/etc/profile.d/conda.sh"
|
||
|
|
conda activate base
|
||
|
|
spleeter "$@"
|