From a12cb811d6b13620860d5b658a826daa5579585c Mon Sep 17 00:00:00 2001 From: rk1a Date: Tue, 13 Sep 2022 16:33:33 +0200 Subject: [PATCH] Adds instructions for testing project without Docker --- README.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 15430a7..f4a2649 100644 --- a/README.md +++ b/README.md @@ -47,4 +47,21 @@ and just start run.sh, then it will start the training process directly and you 8. Push the branch you want to submit via `git push aicrowd ` 9. Create a git tag with `git tag -am "submission-" submission-` 10. Push the tag with `git push aicrowd submission-` -11. Check the status of your submission in the issues section of the repository. \ No newline at end of file +11. Check the status of your submission in the issues section of the repository. + +# Testing code on Debian without Docker + +```shell +# Install dependency packages +sudo apt -qq update && xargs -a apt.txt apt -qq install -y --no-install-recommends \ + && rm -rf /var/cache/* + +# Create conda environment +conda env create -n basalt -f environment.yml --prune + +# Activate environment +conda activate basalt + +# Test whether your code works +python .py +```