在 debian 中从源代码安装 pgadmin4。它没有 .configure

在 debian 中从源代码安装 pgadmin4。它没有 .configure

我下载了带扩展名的源代码.tar.gz。我提取了它

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

但是,pgadmin4-5-6目录内没有configure文件。我认为我们运行是./configure为了创建一个Makefile,因此Makefile已经存在。这就是我跑步时得到的结果ls

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.

我已经安装了python。但是,我想知道如何从源代码安装。我在做什么?我去年已经在另一台机器上尝试过源代码,最近在我的新机器上尝试过,我想知道如何安装它

答案1

请查看提供的自述文件。在那里您可以找到从源代码安装 pgadmin4 所需的步骤。由于这不是经典的 C/C++ 应用程序,因此工作流程有所不同,并且不包含通过./configure.

另一种可能适合您的安装方式是通过 pip。说明可以在官方指南

相关内容