Skip to content
Open
Show file tree
Hide file tree
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
22 changes: 22 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Claude Code Instructions

## Python Environment

**ALWAYS use `.venv-310` virtual environment for this project.**

When running Python commands, use:
```bash
source .venv-310/bin/activate && python <command>
```

Never use system `python` or `python3` directly without activating the virtual environment first.

## Example Commands

```bash
# Running training
source .venv-310/bin/activate && python -m collab_env.gnn.interaction_particles.run_training --help

# Running any Python script
source .venv-310/bin/activate && python <script>.py
```
13 changes: 13 additions & 0 deletions Dockerfile.gnn
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM runpod/pytorch:2.8.0-py3.11-cuda12.8.1-cudnn-devel-ubuntu22.04

RUN apt-get update && apt-get install -y \
screen \
htop \
mc \
&& rm -rf /var/lib/apt/lists/* && \
curl https://rclone.org/install.sh | bash && \
rclone config create collab-data "google cloud storage" service_account_file=/workspace/collab-environment/config-local/collab-data-463313-c340ad86b28e.json && \
pip install uv nvitop && \
git config --global user.email "dima.batenkov@gmail.com" && \
git config --global user.name "Dmitry Batenkov"
WORKDIR /workspace
Loading