From 159a47738a6f23e86ca3e187826f5df9a3733ae7 Mon Sep 17 00:00:00 2001 From: Andrew White Date: Mon, 27 Jul 2026 21:04:02 -0500 Subject: [PATCH] fix: conda env create command uses wrong subcommand --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e3f0222..2e13a3c 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ If you find our work useful, please consider citing our paper: ## Installation 1. Create and activate conda environment ```bash -conda env create -n m2t2 python=3.10 +conda create -n m2t2 python=3.10 conda activate m2t2 ``` 2. Install CUDA. Replace `11.7.0` with the CUDA version compatible with your nvidia driver. You can check your CUDA version using `nvidia-smi`.