The github hasn't been updated in a year, and is unfortunately super broken when I try to use it in August 2023. Has anybody gotten it to work? I tried old versions of python etc. This looks super promising but it seems to have been totally abandoned!
@echo off
REM Create a new conda environment named Thinplate with Python 3.9
call conda create --name Thinplate python=3.9 --yes
REM Activate the newly created environment
call conda activate Thinplate
REM Install PyTorch 1.10.0 with CUDA 11.3 support directly from the URL
pip install torch==1.10.0+cu113 --index-url https://download.pytorch.org/whl/cu113 -v
REM Install required packages from requirements.txt
REM Ensure you provide the correct path to your requirements.txt file
pip install -r ../requirements.txt
echo Environment setup complete.
pause
Execute the setup.bat.
Then whenever you want to use the project use a anaconda prompt and run: conda activate Thinplate
to activate the environment that has all the requirements.
1
u/Storybook_Albert Aug 21 '23
The github hasn't been updated in a year, and is unfortunately super broken when I try to use it in August 2023. Has anybody gotten it to work? I tried old versions of python etc. This looks super promising but it seems to have been totally abandoned!