From 3debb824a1c199c789fb8d4f562dc1319ac9c6c8 Mon Sep 17 00:00:00 2001 From: salihmarangoz Date: Thu, 25 Jan 2024 11:11:11 +0100 Subject: [PATCH 1/3] fixed run.sh --- run.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/run.sh b/run.sh index 330d1fe..7030220 100644 --- a/run.sh +++ b/run.sh @@ -17,12 +17,17 @@ set -e set -x -virtualenv -p python3 . +virtualenv -p python3.10 . source ./bin/activate +sudo apt-get install python3.10-tk # temporary solution +pip install -U pip pip install --require-hashes -r requirements.txt -gdown --folder https://bit.ly/alphageometry +GDRIVE_URL=$(curl -s -L -o /dev/null -w "%{url_effective}" https://bit.ly/alphageometry) +pip install -U gdown # temporary solution +echo "Downloading GDrive folder: $GDRIVE_URL" +gdown --folder "$GDRIVE_URL" DATA=ag_ckpt_vocab MELIAD_PATH=meliad_lib/meliad From 5da7feb7cb9e471f8bfe91b43f2cd6a31d97360f Mon Sep 17 00:00:00 2001 From: salihmarangoz Date: Thu, 25 Jan 2024 11:12:41 +0100 Subject: [PATCH 2/3] updated .gitignore --- .gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index 87df5a1..2742c05 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,10 @@ share/python-wheels/ .installed.cfg *.egg MANIFEST + +# Others +pyvenv.cfg +share/ +bin/ +ag_ckpt_vocab/ +meliad_lib/ \ No newline at end of file From dd12d372f61a828ede5e5b78c2383b2b64357ddb Mon Sep 17 00:00:00 2001 From: salihmarangoz Date: Thu, 25 Jan 2024 11:24:22 +0100 Subject: [PATCH 3/3] Trigger CLA check