AdritRao commited on
Commit
2308ea9
1 Parent(s): 70d0549

Update install.sh

Browse files
Files changed (1) hide show
  1. 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 /root/miniconda # Specify the installation path as needed
6
 
7
  # Step 2: Initialize Miniconda
8
- source /root/miniconda/etc/profile.d/conda.sh
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