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

Update install.sh

Browse files
Files changed (1) hide show
  1. install.sh +4 -2
install.sh CHANGED
@@ -8,5 +8,7 @@ bash miniconda.sh -b -p ~/miniconda # Install in your home directory
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
12
- cd Comp2Comp-main && bin/install.sh
 
 
 
8
  source ~/miniconda/etc/profile.d/conda.sh
9
  conda init
10
 
11
+ # Step 3: Change to the desired directory and make install.sh executable, then run it
12
+ cd Comp2Comp-main
13
+ chmod +x bin/install.sh # Make install.sh executable
14
+ ./bin/install.sh # Execute the installation script