복붙노트

[PYTHON] Jupyter 노트북을 통해 GitHub에서 모듈 설치

PYTHON

Jupyter 노트북을 통해 GitHub에서 모듈 설치

처음 GitHub에서 무언가를 설치하려했지만 Google에서 검색 한 후 간단한 해결책을 찾을 수 없었습니다.

Jupyter 노트북을 사용하고이 모듈을 설치하려고합니다.

https://github.com/Expt-David/NumSchrodingerEq

나는 이것을 노트북 안에 쓰려고 노력했다.

!pip install git+git://github.com/Expt-David/NumSchrodingerEq.git

하지만 다음과 같은 오류가 나타납니다 :

Collecting git+git://github.com/Expt-David/NumSchrodingerEq.git
  Cloning git://github.com/Expt-David/NumSchrodingerEq.git to c:\users\greatg~1\appdata\local\temp\pip-1w_dpw43-build
  Error [WinError 2] The system cannot find the file specified while executing command git clone -q git://github.com/Expt-David/NumSchrodingerEq.git C:\Users\GREATG~1\AppData\Local\Temp\pip-1w_dpw43-build
Cannot find command 'git'
You are using pip version 8.1.2, however version 9.0.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.

편집하다

git을 다시 설치하고 경로를 수동으로 삭제하고 편집하여 해당 문제에 대해 작업 한 것 같지만 지금은 다음과 같이 표시됩니다.

Collecting git+https://github.com/Expt-David/NumSchrodingerEq.git
  Cloning https://github.com/Expt-David/NumSchrodingerEq.git to c:\users\greatg~1\appdata\local\temp\pip-zpuki8tu-build
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "d:\anaconda3\lib\tokenize.py", line 454, in open
        buffer = _builtin_open(filename, 'rb')
    FileNotFoundError: [Errno 2] No such file or directory: 'C:\\Users\\GREATG~1\\AppData\\Local\\Temp\\pip-zpuki8tu-build\\setup.py'

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in C:\Users\GREATG~1\AppData\Local\Temp\pip-zpuki8tu-build\

그리고 setuptools를 설치하고 업데이트했습니다.

내가 뭘 잘못하고 있죠 ?

감사!

해결법

  1. ==============================

    1.PATH에 Git 설치 경로가 포함되어있는 세션에서 Jupyter Notebook을 실행하십시오.

    PATH에 Git 설치 경로가 포함되어있는 세션에서 Jupyter Notebook을 실행하십시오.

    그리고 pip 문제 2109를 확인하십시오 :

    제 경우에는 문제가 창문의 경로 환경에서 git에 대한 경로를 정의한 방법이었습니다.

    PATH=...;c:\python27\scripts;"c:\Program Files\git\cmd";C:\Tcl\bin;...
    

    그것은 최근 버전의 pip에서 수정되어야하지만, 다시, % PATH %를 다시 확인하십시오.

    그래도 여전히 실패한다면 간단한 경로로 시도해보십시오. Git은 공백없이 짧은 PATH에 설치됩니다 :

    PATH 문제와 관련하여 다음을 입력하십시오 (CMD에서).

    set PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\
    set GH=C:\Git2.13.2
    set PATH=%GH%\bin;%GH%\usr\bin;%GH%\mingw64\bin;%PATH%
    

    Python / pip에 필요한 것을 PATH에 추가하십시오. 그런 다음 다시 시도하십시오.

    두 번째 오류 메시지는 "pip installation error"를 고려하십시오. 해당 파일이나 디렉토리가 없습니다. setup.py "", Python 버전을 다시 확인하십시오. pip is python 2. pip3은 python 3입니다.

  2. from https://stackoverflow.com/questions/44873473/installing-module-from-github-through-jupyter-notebook by cc-by-sa and MIT license