Deep Learning
Miniconda로 Deep learning 가상환경 만들기
ddokkddokk
2023. 3. 22. 09:28
반응형
1. env create
$ conda create -y --name cvt2 python=3.8
2.load env
$ source activate cvt2
3. install pytorch
$ conda install -c conda-forge pytorch torchvision cudatoolkit=11.3
(* -c option means channel, conda-forge is a repository including tons of packages and providing the packages complimentary)
4. install requirements
$ pip install -r requirements.txt
$ pip install -e .
5. install nuscenes
$ pip install nuscenes-devkit