Skip to content
Snippets Groups Projects
Commit a18e37b7 authored by rdanecek's avatar rdanecek
Browse files

Further finetune the install script

parent 2d5ff793
Branches main
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ echo "Installing mamba" ...@@ -5,7 +5,7 @@ echo "Installing mamba"
conda install mamba -n base -c conda-forge conda install mamba -n base -c conda-forge
if ! command -v mamba &> /dev/null if ! command -v mamba &> /dev/null
then 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 exit
fi fi
echo "Creating conda environment" echo "Creating conda environment"
...@@ -21,14 +21,11 @@ else ...@@ -21,14 +21,11 @@ else
fi fi
echo "Installing conda packages" echo "Installing conda packages"
mamba env update -n work38 --file conda-environment_py38_cu11_ubuntu.yml 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 Cython==0.29
pip install -e .
echo "Making sure Pytorch3D installed correctly" echo "Making sure Pytorch3D installed correctly"
pip install git+https://github.com/facebookresearch/pytorch3d.git@v0.6.2 pip install git+https://github.com/facebookresearch/pytorch3d.git@v0.6.2
echo "Installing other requirements" echo "Installing GDL"
pip install -e . pip install -e .
cd ..
pip install -r requirements38.txt
cd ../..
echo "Installation finished" echo "Installation finished"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment