diff --git a/install_38.sh b/install_38.sh
index 74d02a3a86e04fdf75e17ea8b0fa6c626f28b709..686a12549426f36702ea7d7fce837a261edcf41c 100755
--- a/install_38.sh
+++ b/install_38.sh
@@ -5,7 +5,7 @@ echo "Installing mamba"
 conda install mamba -n base -c conda-forge
 if ! command -v mamba &> /dev/null
 then
-    echo "mamba could not be found. The installation must have failed. Please install mamba before running this script."
+    echo "mamba could not be found. Please install mamba before running this script"
     exit
 fi
 echo "Creating conda environment"
@@ -21,14 +21,11 @@ else
 fi
 echo "Installing conda packages"
 mamba env update -n work38 --file conda-environment_py38_cu11_ubuntu.yml 
-echo "Installing GDL"
+echo "Installing other requirements"
+pip install -r requirements38.txt
 pip install Cython==0.29
-pip install -e . 
 echo "Making sure Pytorch3D installed correctly"
 pip install git+https://github.com/facebookresearch/pytorch3d.git@v0.6.2
-echo "Installing other requirements"
+echo "Installing GDL"
 pip install -e . 
-cd .. 
-pip install -r requirements38.txt
-cd ../..
 echo "Installation finished"