Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 518 Bytes

File metadata and controls

23 lines (18 loc) · 518 Bytes

Step-by-step conda env initialization

  1. Create:
conda create --name bp python=3.8.0
  1. Activate
conda activate bp
  1. Install pytorch 2.2.1 (should be searched for a specific CUDA and Python version)
conda install pytorch==2.2.1 torchvision==0.17.1 torchaudio==2.2.1 pytorch-cuda=12.1 -c pytorch -c nvidia
  1. Install requirements (should comment-out the pytorch requirement in requirements.txt to prevent clashes)
pip install -r requirements.txt 
  1. Use