jupyter 오류 EnvironmentLocation NotFound: Not a conda environment:/root/anaconda3/envs/anaconda3

2083 단어 #python 환경

솔루션

  • 환경 Anaconde
  • 열기/anaconda3/pkgs/nb_conda-2.2.1-py37_0/lib/python3.7/site-packages/nb_conda/envmanager.py 파일
  • 아래 코드 찾기
    return {
             
        "environments": [root_env] + [get_info(env)
                                      for env in info['envs']]
    }
    
  • 에서
    return {
             
    
        "environments": [root_env] + [get_info(env) for env in info['envs']
    
                                      if env != root_env['dir']]
    
    }
    
  • 로 수정
  • jupyter notebook 다시 시작
  • 좋은 웹페이지 즐겨찾기