Open elouannd opened 7 months ago
I have the same issue. 2019 Macbook Pro. Intel CPU, AMD GPU.
I managed to fix it by updating install.sh
file. First of all I have miniconda installed at the path ~/miniconda3
. Then:
chmod +x ~/miniconda3/etc/profile.d/conda.sh
install.sh
starting with line around 379
# Activate the Miniconda installation
log_message "INFO" "Activating Miniconda environment..."
source "$miniconda_path/bin/activate"
log_message "INFO" "Creating Conda environment: xtts" conda create -n xtts python=3.10 git -y
log_message "INFO" "Activating Conda environment: xtts" source activate xtts
with
log_message "INFO" "Activating Miniconda environment..." source ~/miniconda3/etc/profile.d/conda.sh
log_message "INFO" "Creating Conda environment: xtts" conda create -n xtts python=3.10 git -y
log_message "INFO" "Activating Conda environment: xtts" conda activate xtts
Run as usual.
For arch linux user that have this problem, follow this guide, but setting the path of conda, if you installed with AUR, in /opt/miniconda3/bin/activate
I managed to fix it by updating
install.sh
file. First of all I have miniconda installed at the path~/miniconda3
. Then:1. `chmod +x ~/miniconda3/etc/profile.d/conda.sh` 2. Replace in file `install.sh` starting with line around 379
# Activate the Miniconda installation log_message "INFO" "Activating Miniconda environment..." source "$miniconda_path/bin/activate" # Create a Conda environment named xtts log_message "INFO" "Creating Conda environment: xtts" conda create -n xtts python=3.10 git -y # Activate the xtts environment log_message "INFO" "Activating Conda environment: xtts" source activate xtts
with
# Activate the Miniconda installation log_message "INFO" "Activating Miniconda environment..." source ~/miniconda3/etc/profile.d/conda.sh # Create a Conda environment named xtts log_message "INFO" "Creating Conda environment: xtts" conda create -n xtts python=3.10 git -y # Activate the xtts environment log_message "INFO" "Activating Conda environment: xtts" conda activate xtts
Run as usual.
Environment
🍎 Mac
System
Sonoma 14.3.1 (23D60)
Describe the problem
When installing ST+Extra+XTTS I'm hit by an error when the script want to activate the conda env for xtts. I've reinstalled Miniconda, Anaconda. Script work great when just installing ST or Extra. Heres the entire terminal output.
Additional info
No response
Please tick the boxes