jupyter notebook에서 환경 만들기,pytorch 설치

5161 단어 공구.
5.8 torch 환경
Ref:https://zhuanlan.zhihu.com/p/101799677
  • 미러 추가
  • conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
    conda config --set show_channel_urls yes
    
  • anaconda prompt 새 환경 만들기
  • conda create -n torch
    
  • 진입 환경
  • conda activate torch
    
  • pytorch 홈페이지에 입장https://pytorch.org/
  • conda install pytorch torchvision cpuonly
    

    원판의 결말을 공식적으로 명령하지 않도록 주의해라 -c pytorch
  • pytorch 설치 확인
  • python
    import torch
    torch.__version__
    
  • 새 환경은 ipykernel이 설치되어 있지 않아서 Jupyter Notebook에 등록할 수 없기 때문에 먼저 환경을 준비해야 합니다.
  • #   ipykernel
    conda install ipykernel
    #     
    python -m ipykernel install  --name torch --display-name "Pytorch for Deeplearning"
    
    #        
    activate base
    #   jupyter notebook    
    jupyter notebook --generate-config
    ##        jupyter_notebook_config.py     
    
  • 파일 열기, 수정
  • c.NotebookApp.notebook_dir = ''       
    c.NotebookApp.iopub_data_rate_limit = 100000000              
    
  • 원인을 알 수 없는kernel에 Pytorch for Deeplearning (사용할 수 없음) 과 Python [conda env:torch] 사용 가능
  • 이 더 있습니다.
    5.9 pytorch 환경
    Ref:https://zhuanlan.zhihu.com/p/101799677참조 대상:https://blog.csdn.net/u014665013/article/details/81084604
  • anaconda 새 환경, 등가
  • conda create -n pytorch
    
  • 어제 베이스 환경에서
  • conda install ipykernel
    
  • 새 환경에 들어가서kernel 파일을 만들고 notebook의kernel에 환경을 씁니다
  • conda activate pytorch
    conda install -n pytorch ipykernel
    python -m ipykernel install --user --name pytorch --display-name "pytorch"
    
  • pytorch 설치
  • conda install pytorch torchvision cpuonly
    

    이쯤
    총결산
  • pytorch와 torch 두 가상 환경에pytorch
  • 가 설치되어 있음
  • jupyter notebook에서pytorch를 실행해야 할 때 env:pytorch 또는 env:torch 중 하나를 선택하고pytorch for deep learning을 선택하지 마십시오.pytorch 옵션 없음
  • ipynb 파일에서pytorch를 사용할 때kernel을 env:pytorch 또는 env:torch 중 임의로 선택하고pytorch for deep learning을 선택하지 않으며pytorch
  • 도 선택하지 마십시오.

    좋은 웹페이지 즐겨찾기