我试图在Colab的Linux 4.19.104+ x86_64 Ubuntu 18.04.3 LTS上安装D1。若要重复使用,请将这三条线复制到Colab单元格中,并按shift+enter键:
!git clone -qqq https://github.com/nu774/mp4fpsmod.git > /dev/null
!sudo apt-get update -y -qqq --fix-missing && apt-get install -y -qqq autoconf > /dev/null
!cd mp4fpsmod/ && ./bootstrap.sh && ./configure && make && strip mp4fpsmod && make install./bootstrap.sh中的错误:
Running autoreconf...
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
autoreconf: configure.ac: tracing
autoreconf: configure.ac: adding subdirectory mp4v2 to autoreconf
autoreconf: Entering directory `mp4v2'
autoreconf: running: aclocal --force
autoreconf: configure.ac: creating directory autoaux
autoreconf: configure.ac: not using Libtool
autoreconf: running: /usr/bin/autoconf --force
configure.ac:83: error: possibly undefined macro: AC_LIBTOOL_WIN32_DLL
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
autoreconf: /usr/bin/autoconf failed with exit status: 1你知道怎么回事吗?
发布于 2020-05-01 06:55:43
安装libtool:
!sudo apt-get update -y -qqq --fix-missing && apt-get install -y -qqq autoconf libtool > /dev/nullhttps://askubuntu.com/questions/1232920
复制相似问题