Questions tagged «install-from-source»

从源安装是指在不使用软件中心的情况下在Ubuntu上安装软件包的一种方法。通常,不建议使用此方法来安装软件。

1
编译软件包时出错:“配置:错误:无gstreamer-1.0> = 1.0.0”
我正在尝试编译一个程序包,它需要gstreamer-1.0> = 1.0.3。我认为我的系统上安装了较旧的版本。因此,我下载并编译了gstreamer-1.0.4,并将其安装在/usr/local/lib/gstreamer-1.0中。 完成该操作后,我再次尝试编译该程序包,但是仍然出现与我没有的错误“ gstreamer-1.0> = 1.0.3”相同的错误。 我也尝试导出路径 “导出LD_LIBRARY_PATH = / usr / local / lib / gstreamer-1.0” “ whereis gstreamer-1.0”输出 gstreamer-1:/usr/lib64/gstreamer-1.0 /usr/local/lib/gstreamer-1.0 /usr/libexec/gstreamer-1.0 /usr/share/gstreamer-1.0 实际错误讯息 checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking target system type... x86_64-unknown-linux-gnu checking for a BSD-compatible install... /bin/install -c checking whether …

2
较少的CSS编译器返回空白
我什至不知道从哪里开始调试它。几个月前,我可以很高兴地从LESS文件中编译CSS。今天,我跑无论是recess --compile test.less或lessc test.less,我只是得到了一个空白的输出。没有错误。lessc test.less > test.css只是创建一个空白文件。twitter-bootstrap Makefile中的LESS错误,无济于事。 我正在使用以下简单test.less的调试工具: @color: #4D926F; #header { color: @color; } h2 { color: @color; } 我使用的是ubuntu 12.10,我以前曾sudo apt-get install node-less提供lessc,并从github(npm)上的说明安装了凹槽。两者都给我空的输出。 甚至不lessc --version返回任何内容。 which lessc 表演 /usr/local/bin/lessc 并且文件不为空。 我的node安装可能发生了某些事情,但不知道如何调试。 apt-get remove --purge node-less并且重新安装没有帮助。 非常感谢您的帮助或调试提示!
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.