Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds instructions for testing project without Docker #54

Merged
merged 1 commit into from
Sep 13, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <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
```