From 74bc4c7388a192c20f052894ceb2dcddbe612e25 Mon Sep 17 00:00:00 2001 From: Arjun Desai Date: Thu, 3 Aug 2023 15:43:43 -0500 Subject: [PATCH] update instructions for python version and finding pytorch version (#109) --- GETTING_STARTED.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/GETTING_STARTED.md b/GETTING_STARTED.md index afd81a57..02ef2c99 100644 --- a/GETTING_STARTED.md +++ b/GETTING_STARTED.md @@ -7,13 +7,15 @@ must be done prior to downloading other requirements. ```bash # Create and activate the environment. -conda create -n meddlr_env python=3.7 +conda create -n meddlr_env python=3.9 conda activate meddlr_env # Install cuda-dependant libraries. Change cuda version as needed. # Below we show examples for cuda-10.1 +# You can find the latest pytorch install code here: +# https://pytorch.org/get-started/locally/ conda install pytorch torchvision cudatoolkit=10.1 -c pytorch -pip install cupy-cuda101 +pip install cupy-cuda101 # Optional - useful for reconstruction. # Install as package in virtual environment (recommended): git clone https://github.com/ad12/meddlr.git