Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
 
Merge pull request #54 from BASALT-2022-Karlsruhe/project_without_docker
Adds instructions for testing project without Docker
  • Loading branch information
lauritowal authored Sep 13, 2022
2 parents c57d09b + a12cb81 commit b54a221
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,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 <branch>`
9. Create a git tag with `git tag -am "submission-<version>" submission-<version>`
10. Push the tag with `git push aicrowd submission-<version>`
11. Check the status of your submission in the issues section of the repository.
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 <your-script>.py
```

0 comments on commit b54a221

Please sign in to comment.