debian의 소스에서 pgadmin4를 설치합니다. .configure가 없습니다.

debian의 소스에서 pgadmin4를 설치합니다. .configure가 없습니다.

확장자가 .인 소스 코드를 다운로드했습니다 .tar.gz. 추출했어요

   tar -xzf pgamdin4-5-6.tar.gz

그러나 pgadmin4-5-6디렉토리에는 configure파일이 없습니다. 내 생각에 우리는 이미 존재하는 것을 ./configure만들기 위해 달려가고 있다고 생각합니다 . 이건 내가 달릴 때 얻는 거야MakefileMakefilels

DEPENDENCIES
Dockerfile
docs
LICENSE
Make.bat
Makefile
pkg
README.md
requirements.txt
runtime
tools
web

나는 노력했다

 $ make

이로 인해 오류가 발생합니다.

file "build_code_snippet.py", line 4, in <module>
    import builtins
ImportError: No module named builtins
make[1]: [Makefile.sphinx:22: code_snippet] Error 1 (ignored)
sphinx-build -W -b html -d _build/doctrees   . _build/html
make[1]: sphinx-build: No such file or directory
make[1]: *** [Makefile.sphinx:47: html] Error 127
make[1]: Leaving directory '/home/tesla/Downloads/pgadmin4-5.4/docs/en_US'
make: *** [Makefile:128: docs] Error 2

시도하면 make install다음 오류가 발생합니다.

   make: *** No rule to make target 'install'.  Stop.

파이썬을 설치했습니다. 그런데 소스에서 설치하는 방법을 알고 싶습니다. 나는 무엇을하고 있는가? 작년에 다른 컴퓨터에서 소스 코드를 시도했고 최근에는 새 컴퓨터에서도 소스 코드를 시도했는데 설치 방법을 알고 싶습니다.

답변1

제공된 내용을 검토하세요.읽어보기 파일. 여기에서 소스에서 pgadmin4를 설치하는 데 필요한 단계를 찾을 수 있습니다. 이는 클래식 C/C++ 애플리케이션이 아니기 때문에 작업 흐름이 다르며 ./configure.

당신에게 적합한 또 다른 설치 방법은 pip를 사용하는 것입니다. 지침은 다음에서 찾을 수 있습니다.공식 가이드

관련 정보