mirror of
https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI.git
synced 2025-04-05 04:08:58 +08:00
Merge 6aba5ad1775ae550ad6d9f87b6a1facde30bd952 into 7ef19867780cf703841ebafb565a4e47d1ea86ff
This commit is contained in:
commit
146278676d
9
run.sh
9
run.sh
@ -1,5 +1,8 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Changes the working directory to the one where the bash script is located.
|
||||||
|
cd $(dirname -- $(readlink -fn -- "$0"))
|
||||||
|
|
||||||
if [ "$(uname)" = "Darwin" ]; then
|
if [ "$(uname)" = "Darwin" ]; then
|
||||||
# macOS specific env:
|
# macOS specific env:
|
||||||
export PYTORCH_ENABLE_MPS_FALLBACK=1
|
export PYTORCH_ENABLE_MPS_FALLBACK=1
|
||||||
@ -17,13 +20,17 @@ else
|
|||||||
requirements_file="requirements.txt"
|
requirements_file="requirements.txt"
|
||||||
|
|
||||||
# Check if Python 3.8 is installed
|
# Check if Python 3.8 is installed
|
||||||
if ! command -v python3.8 >/dev/null 2>&1 || pyenv versions --bare | grep -q "3.8"; then
|
if ! command -v python3.8 >/dev/null 2>&1 || pyenv version --bare | grep -qv "3.8"; then
|
||||||
echo "Python 3 not found. Attempting to install 3.8..."
|
echo "Python 3 not found. Attempting to install 3.8..."
|
||||||
if [ "$(uname)" = "Darwin" ] && command -v brew >/dev/null 2>&1; then
|
if [ "$(uname)" = "Darwin" ] && command -v brew >/dev/null 2>&1; then
|
||||||
brew install python@3.8
|
brew install python@3.8
|
||||||
elif [ "$(uname)" = "Linux" ] && command -v apt-get >/dev/null 2>&1; then
|
elif [ "$(uname)" = "Linux" ] && command -v apt-get >/dev/null 2>&1; then
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install python3.8
|
sudo apt-get install python3.8
|
||||||
|
elif [ "$(uname)" = "Linux" ] && command -v pyenv >/dev/null 2>&1; then
|
||||||
|
pyenv install 3.8
|
||||||
|
pyenv local 3.8
|
||||||
|
alias python3.8=python
|
||||||
else
|
else
|
||||||
echo "Please install Python 3.8 manually."
|
echo "Please install Python 3.8 manually."
|
||||||
exit 1
|
exit 1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user