Last active
November 8, 2022 02:52
-
-
Save saikrn112/0060d02aac38ec2520bd409bc2fc7b90 to your computer and use it in GitHub Desktop.
for installing CV environment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source ~/miniconda3/etc/profile.d/conda.sh | |
conda create -n CV | |
conda activate CV | |
conda install python=3.6 -y | |
conda install matplotlib -y | |
conda install numpy -y | |
conda install opencv -y | |
conda install jupyter -y | |
conda install -c conda-forge termcolor -y | |
conda install -c conda-forge ipywidgets -y | |
conda install -c conda-forge notebook -y | |
conda install -c conda-forge nb_conda_kernels -y | |
conda install -c conda-forge tqdm -y | |
conda install scikit-image -y | |
conda install scikit-learn -y | |
conda install -c conda-forge shapely -y | |
conda install -c conda-forge tensorboard -y | |
conda install -c conda-forge pytorch-lightning -y | |
conda install pytorch torchvision torchaudio cudatoolkit=11.6 -c pytorch -c conda-forge -y | |
conda install -c conda-forge pytorch-model-summary -y | |
conda install -c conda-forge onnxruntime onnxruntime-cpp onnxruntime-novec onnxruntime-novec-cpp # for project2 | |
conda install -c anaconda cython # project2 | |
conda install -c conda-forge imageio # project2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment