android - 在 Pydroid 3 终端中安装 Git

标签 android termux pydroid

我正在使用 Pydroid3 并想在 Pydroid 终端中使用 Git。

在我的 Termux 终端中,我能够安装 Git,如下所述:Python and Git on Android

git 命令现在只能在 Termux 终端中识别,但不能在 Pydroid 中识别 :(。无法在 Pydroid 终端中使用 apt-get 安装 Git。

有人设法为 Pydroid 安装 Git 吗?

最佳答案

这对我有用;如果失败,您可能需要调整 curl 或配置命令。我暂时没有研究 ssh,只有 https。

# enter dev folder
cd $HOME

# set a prefix variable for convenience
export PREFIX="$(readlink -f "$PKG_CONFIG_PATH"/../..)"

# if you want git-remote-https, first build and install curl
curl -LO https://curl.se/download/curl-7.77.0.tar.bz2
tar -jxvf curl-7.77.0.tar.bz2
cd curl-7.77.0
./configure --prefix="$PREFIX" --disable-static --with-openssl --with-ca-path=/system/etc/security/cacerts --with-ca-bundle="$SSL_CERT_FILE"
make -j8 install
cd ..

# download and enter git sources
curl -LO https://www.kernel.org/pub/software/scm/git/git-2.32.0.tar.gz
tar -zxvf git-2.32.0.tar.gz
cd git-2.32.0

# reconfigure git for platform
./configure --prefix="$PREFIX" --without-tcltk --disable-pthreads LDFLAGS="-lssl -lcrypto -lz"

# if you didn't install curl, download autoconf's install script since there is no coreutils on android
# curl "http://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=blob_plain;f=build-aux/install-sh;hb=HEAD" -o install
# otherwise copy curl's install script in
cp ../curl-*/install-sh install

# build and install git
make -j8 install INSTALL="sh $(pwd)/install"

关于android - 在 Pydroid 3 终端中安装 Git,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58672168/

相关文章:

android - 如何优化我在 Canvas 上绘图的代码

python - 在 pydroid3 中找不到模块问题

python - 如何解决在NOX中Pydroid安装kivymd时出错?

android - 解析 XML 时出错 :unbound prefix

Android - AlarmManager 不触发 BroadcastReceiver 以显示本地通知

javascript - Titanium:Android设备上的数据加解密技术

python - 在 Android 上使用 bash shell 打开浏览器后尝试输入搜索数据

Termux 存储库不再有 Release 文件

node.js - 在android上卸载node和npm?

python - 导入 matplotlib 时 pydroid 显示终端