Spaces:
Sleeping
Sleeping
File size: 419 Bytes
4ae0554 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/bin/bash
# Step 1: Install Miniconda
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
bash miniconda.sh -b -p /root/miniconda # Specify the installation path as needed
# Step 2: Initialize Miniconda
source /root/miniconda/etc/profile.d/conda.sh
conda init
# Step 3: Change to the desired directory and execute the installation script
cd Comp2Comp-main && bin/install.sh
|