Skip to content

Commit

Permalink
Further finetune the install script
Browse files Browse the repository at this point in the history
  • Loading branch information
radekd91 committed Feb 13, 2023
1 parent 2d5ff79 commit a18e37b
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions install_38.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"

0 comments on commit a18e37b

Please sign in to comment.