Spaces:
Sleeping
Sleeping
Update install.sh
Browse files- install.sh +3 -3
install.sh
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
-
# Step 1: Install Miniconda
|
4 |
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
|
5 |
-
bash miniconda.sh -b -p
|
6 |
|
7 |
# Step 2: Initialize Miniconda
|
8 |
-
source
|
9 |
conda init
|
10 |
|
11 |
# Step 3: Change to the desired directory and execute the installation script
|
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
+
# Step 1: Install Miniconda in your user's home directory
|
4 |
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
|
5 |
+
bash miniconda.sh -b -p ~/miniconda # Install in your home directory
|
6 |
|
7 |
# Step 2: Initialize Miniconda
|
8 |
+
source ~/miniconda/etc/profile.d/conda.sh
|
9 |
conda init
|
10 |
|
11 |
# Step 3: Change to the desired directory and execute the installation script
|