barriers / 阅读 / 详情

解压git后 没有configure怎么安装

2023-07-16 17:28:52
共2条回复
snjk

检查系统有没有安装Git

可以试着输入git,看看系统有没有安装Git:

没有安装git,Linux会友好地告诉你Git没有安装,还会告诉你如何安装Git。

2

安装Git

Ubuntu Linux,通过一条apt-get install git就可以直接完成Git的安装,非常简单。

如果是其他Linux版本,可以直接通过源码安装。先从Git官网下载源码,然后解压,依次输入:./configure,make,make install这几个命令安装就好了。

大鱼炖火锅

可以使用autoconf 生成configure文件 再执行./configure (必须在Git文件夹下)

相关推荐

configure是什么意思

configure英[ku0259nu02c8fu026agu0259(r)]美[ku0259nu02c8fu026agju0259r]v.配置; 设定; 使成形; 使具一定形式网络组态; 设置; 安装第三人称单数:configures现在分词:configuring过去式:configured过去分词:configured形近词:transfiguredisfigurerefigure数据来源:金山词霸双语例句柯林斯词典英英释义百度百科百度知道新1How easy was it to configure the software?配置这个软件容易吗?
2023-07-16 11:22:591

configure的中文意思

configure 基本解释:v. 配置;设定;使成形;使具一定形式。configure 变化形式:第三人称单数: configures过去式: configured过去分词: configured现在分词: configuringconfigure 用法和例句:Configure and use shadow copy in microsoft windows vista ?配置和使用微软windowsvista的影像拷贝?This procedure will configure the oracle cluster software on both nodes .这个过程将会在两个节点上配置oracle集群软件。The second thing that we have to do is configure our databases .第二个要配置的东西是我们的数据库。Getting started is easy . You can configure google sync directly from your device .使用起来是很简单的,你可以直接在你的移动设备里配置google同步程序。You can configure most s ystems to add this file automatically at the end of each message you send .你可将多数系统配置成在你所发送的每一条消息的最后自动加上这个文件。
2023-07-16 11:23:071

configured是什么意思

configure是配置的意思,这是他的过去式,
2023-07-16 11:23:212

Linux下安装,配置config文件

抄袭这篇文章: https://www.linuxidc.com/Linux/2019-03/157703.htm Linux下正常的编译安装/卸载 源码的安装一般由3个步骤组成: 配置(configure) 编译(make) 安装(make install)。 configure文件是一个可执行的脚本文件,它有很多选项,在待安装的源码目录下使用命令./configure –help可以输出详细的选项列表。 其中--prefix选项是配置安装目录,如果不配置该选项,安装后可执行文件默认放在/usr /local/bin,库文件默认放在/usr/local/lib,配置文件默认放在/usr/local/etc,其它的资源文件放在/usr /local/share,比较凌乱。 使用--prefix选项的另一个好处是 方便卸载软件或移植软件 当某个安装的软件不再需要时,只须简单的删除该安装目录,就可以把软件卸载干净; 移植软件只需拷贝整个目录到另外一个机器即可(相同的操作系统下) 当然要卸载程序,也可以在原来的make目录下用一次make uninstall,但前提是Makefile文件有uninstall命令。 make install PREFIX=path 这里PREFIX必须大写,其实绝大部分情况下 make install 都不能再指定 PREFIX 了,因为大部分程序都会 configure 时得到的 prefix 写入 config.h,然后在编译时编译到可执行文件内部,以便在执行时读取资源文件等。 这样在编译完毕后,就不能再修改 prefix 了。只有运行时不需要资源文件的小工具,才可能在安装的时候随意选择 PREFIX,或者具有 loader 的大程序,在执行时通过 loader 传入路径…… 关于卸载 如果没有配置--prefix选项,源码包也没有提供make uninstall,则可以通过以下方式可以完整卸载: 一个临时目录重新安装一遍,如: $ ./configure --prefix=/tmp/to_remove && make install 然后遍历/tmp/to_remove的文件,删除对应安装位置的文件即可(因为/tmp/to_remove里的目录结构就是没有配置--prefix选项时的目录结构)。
2023-07-16 11:24:351

执行configure命令常用配置

GNU编码标准中规定的一些变量,包括: 用来声明安装的目录,下图给出了其中一部分 可以通过configure的参数来配置以上参数,例如: make和make install命令的含义见 这里 则生成的文件会被安装到~/usr/开头的目录下,prefix的缺省值是/usr/local。 例如: 上述命令规定C文件用gcc-3命令编译, -I 指定头文件目录, -L 指定链接库的文件 则生成名字为test-hello的可执行文件 其他的配置参数用法可以通过 .configure --help 来查看用法
2023-07-16 11:24:421

Linux中的./configure

源码的安装一般由3个步骤组成:配置(configure)、编译(make)、安装(make install)。Configure是一个可执行脚本,它有很多选项,在待安装的源码路径下使用命令./configure –help输出详细的选项列表。其中--prefix选项是配置安装的路径,如果不配置该选项,安装后可执行文件默认放在/usr /local/bin,库文件默认放在/usr/local/lib,配置文件默认放在/usr/local/etc,其它的资源文件放在/usr /local/share,比较凌乱。如果配置--prefix,如:./configure --prefix=/usr/local/test可以把所有资源文件放在/usr/local/test的路径中,不会杂乱。用了—prefix选项的另一个好处是卸载软件或移植软件。当某个安装的软件不再需要时,只须简单的删除该安装目录,就可以把软件卸载得干干净净;移植软件只需拷贝整个目录到另外一个机器即可(相同的操作系统)。当然要卸载程序,也可以在原来的make目录下用一次make uninstall,但前提是make文件指定过uninstall。有一个Linux命令大全,里面关于Linux命令介绍的还挺全面,你可以参考查看:
2023-07-16 11:24:519

我的eclipse里面为什么有吗configure这个选项

configure这个选项在Build Path里面,你把鼠标移动到Build Path,你就可以看到了
2023-07-16 11:25:272

configure后出现>怎么回事

交互式状态。configure命令后出现>号表示当前处于交互式状态,它等待用户输入一些配置参数,这些参数经过编译之后会影响程序的运行结果。输入完所有参数之后再按Enter键就可以结束配置,编译程序,运行make命令编译安装程序。
2023-07-16 11:25:461

linux下configure配置问题?

这要看 no 是什么,因为 configure 并不是只有配置的功能,他还负责检测当前环境是否符合编译这个软件的要求。
2023-07-16 11:25:532

configure是什么意思车上的

在汽车上是系统设置菜单的意思。车上按钮分别表示的意思是:SRCE 在收音机、DVD、CD、AUX之间切换按一下切一次,bano收音机,tone音质调节(高中低音、爵士摇滚等)。车带来交通的便捷性,对距离的认识也变化了,在讲究效率和时间就是金钱的时代,交通的便捷性给人类带来巨大的益处,减少了不必要的赶路时间。我国的第一辆汽车于1929年5月在沈阳问世,由张学良将军掌管的辽宁迫击炮厂制造。张学良让民生工厂厂长李宜春从美国购进“瑞雪”号整车一辆,作为样车。
2023-07-16 11:26:001

怎么清除configure之后生成的文件?

make cleanx0dx0a清除上次的make命令所产生的object文件(后缀为“.o”的文件)及可执行文件。x0dx0amake distcleanx0dx0a类似make clean,但同时也将configure生成的文件全部删除掉,包括Makefile。
2023-07-16 11:26:071

Linux源码安装执行./configure报:No such file or directory

说明当前安装目录下没有这个configure文件。 而有的软件包并不是用makefile的,或者makefile已经写好,不用config了,因此不提供configure。你可以看文件夹里是否有makefile文件,若有,可以直接使用make编译,make install安装;如果没有,看是否有setup、install等sh文件或其它可执行文件。还有一种情况,这个软件解压即可运行。
2023-07-16 11:26:151

MATLAB神经网络工具箱configure函数使用?

你想要什么解释?这句话是在为你的神经网络(net)配置每个RTDX缓冲channel中的字节位数(p)和缓冲channel的数量(t)。RTDX(real time data exchange)实时数据交换。如果你懂低级计算机编程语言的话应该很好理解。这句话基本可以大致理解为为你的神经网络划出一个计算的空间。神经网络算法本身极其复杂,甚至有很多conference是专门讨论该算法的。matlab作为高级程序语言,出发点是把所有算法打包好使用户方便使用。要做到这个对一些基础算法来说并不难。但是神经网络本身就是一大堆算法的集成,简单打包算法不太可能。使用这个工具箱你只需要知道大致原理,再找几个模板依样画葫芦练习一下就可以了,没必要全弄明白
2023-07-16 11:26:241

configure的时候怎么指定搜索路径

./configure是源代码安装的第一步,主要的作用是对即将安装的软件进行配置,检查当前的环境是否满足要安装软件的依赖关系,但并不是所有的tar包都是源代码的包,楼主可以ls看看有没有configure这个文件,也许你下的是二进制的包,如果是二进制的包,解压后直接就能使用。二进制的mysql包,可以放到任意位置,所有的命令都是解压后目录的bin目录下,你要想在任意目录都能使用mysql的命令,需要把bin目录加到PATH环境变量中,比如你的mysql目录是/usr/local/mysql,你可以这样添加环境变量,vi~/.bash_profile在文件的最后面添加PATH=$PATH:/usr/local/mysql/binexportPATH然后执行source~/.bash_profile这样就可以在任意目录执行mysql的所有命令了
2023-07-16 11:26:322

configure命令未找到怎么办?

有源代码的软件才需要configure,这个没有源代码。解压出来的应该有执行文件,ls一下找找,直接运行就OK了
2023-07-16 11:26:521

c程序中的configure脚本有什么作用

获取环境信息,检查依赖库,生成makefile等比如各个编译器的特性该不该用,要不要使用某些库等configure只是习惯
2023-07-16 11:27:011

linux安装软件时下如何运行configure

他说你的编译器无法正常使用,你看看那你的gcc是不是安装了
2023-07-16 11:27:092

linux configure 指定依赖项目录

ls正解,可以加入参数选项
2023-07-16 11:27:183

mac里有configure吗

我举例看面命令:./configure --prefix=/usr/local/apache2 --enable-module=so ./configure面少空格追问看-prefix短杠应该二短杠
2023-07-16 11:27:271

linux 安装 .tgz 包下没有 configure 文件 只有 configure.ac文件 怎么安装啊

查看 README 文件,里面有介绍的.
2023-07-16 11:27:356

请问“配置”用英语怎么说?

allocation
2023-07-16 11:28:172

linux 安装包中 configure起什么

Configure脚本配置工具就是基础之一,它是autoconf的工具的基本应用。
2023-07-16 11:28:241

使用configure 时提示未找到命令,什么情况

你好,是不是输错命令了,我记得是config 后面没有ure1、确定你是在解压后的目录安装!2、你确定你所在的目录,有configure这个文件?如果没有,那么该包不是标准安装包,需要查看README文件,寻找安装帮助!
2023-07-16 11:28:501

linux源码包安装php中的./configure选项详解

1、Linux下,默认是在/usr/local/bin/,假如你设置--prefix=/usr/local/php那么就在/usr/local/php/bin/2、sbin道理相同。sbin的意思就是server bin3、EPREFIX没用过4、如果要用2套版本,用prefix区分开不同的安装目录。php.ini默认在/usr/local/php/etc/
2023-07-16 11:29:002

php 安装的./configure在哪

首先要搞清楚:是PHP与APACHE相对独立的,APACHE本身不支持PHP脚本解析,这就要用PHP来解析,配置文件是APACHE文件夹下的confhppd.conf,你可以参考模块化安装,也可以使用CGI模式你可以去后盾人平台看一下,里面的东西不错
2023-07-16 11:29:092

如何查看Apache的configure编译参数

`configure" configures this package to adapt to many kinds of systems.`configure" 配置这个包来适合多数系统.Usage: ./configure [OPTION]… [VAR=VALUE]…语法: ./configure [选项]… [变量=值]…To assign environment variables (e.g., CC, CFLAGS…), specify them as VAR=VALUE. See below for descriptions of some of the useful variables.配置环境变量(例如,CC,CFLAGS),格式为VAR=VALUE. 看下面对这些可用变量的说明.Defaults for the options are specified in brackets.选项的默认值括在方括号之中.Configuration:配置: -h, –help display this help and exit 显示这个帮助并退出 –help=short display options specific to this package 显示这个包的详细选项 –help=recursive display the short help of all the included packages 显示所有包括的包的帮助信息 -V, –version display version information and exit 显示版本信息并退出 -q, –quiet, –silent do not print `checking…" messages 不打印"检查"信息 –cache-file=FILE cache test results in FILE [disabled] 存储测试信息到文件中 [disabled] -C, –config-cache alias for `–cache-file=config.cache" `–cache-file=config.cache"的别名 -n, –no-create do not create output files 不生成输出文件 –srcdir=DIR find the sources in DIR [configure dir or `.."] 在DIR查找代码Installation directories:安装目录: –prefix=PREFIX install architecture-independent files in PREFIX 安装路径 [/usr/local/apache2] –exec-prefix=EPREFIX install architecture-dependent files in EPREFIX 执行文件安装路径 [PREFIX]By default, `make install" will install all the files in `/usr/local/apache2/bin", `/usr/local/apache2/lib" etc. You can specify an installation prefix other than `/usr/local/apache2′ using `–prefix",for instance `–prefix=$HOME".默认情况下,"make install"安装所有的文件在 `/usr/local/apache2/bin", `/usr/local/apache2/lib" 等等.你可以指定一个安装前缀 ‘–prefix"选项来改变安装位置,例如 `–prefix=$HOME".For better control, use the options below.更详细的配置,使用下面的选项.Fine tuning of the installation directories:调整安装目录的选项: –bindir=DIR user executables [EPREFIX/bin] –sbindir=DIR system admin executables [EPREFIX/sbin] –libexecdir=DIR program executables [EPREFIX/libexec] –sysconfdir=DIR read-only single-machine data [PREFIX/etc] –sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] –localstatedir=DIR modifiable single-machine data [PREFIX/var] –libdir=DIR object code libraries [EPREFIX/lib] –includedir=DIR C header files [PREFIX/include] –oldincludedir=DIR C header files for non-gcc [/usr/include] –datarootdir=DIR read-only arch.-independent data root [PREFIX/share] –datadir=DIR read-only architecture-independent data [DATAROOTDIR] –infodir=DIR info documentation [DATAROOTDIR/info] –localedir=DIR locale-dependent data [DATAROOTDIR/locale] –mandir=DIR man documentation [DATAROOTDIR/man] –docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE] –htmldir=DIR html documentation [DOCDIR] –dvidir=DIR dvi documentation [DOCDIR] –pdfdir=DIR pdf documentation [DOCDIR] –psdir=DIR ps documentation [DOCDIR]System types:系统类型: –build=BUILD configure for building on BUILD [guessed] –host=HOST cross-compile to build programs to run on HOST [BUILD] –target=TARGET configure for building compilers for TARGET [HOST]Optional Features:可选的功能: –disable-FEATURE do not include FEATURE (same as –enable-FEATURE=no) –enable-FEATURE[=ARG] include FEATURE [ARG=yes] –enable-layout=LAYOUT –enable-v4-mapped Allow IPv6 sockets to handle IPv4 connections –enable-exception-hook Enable fatal exception hook –enable-maintainer-mode Turn on debugging and compile time warnings –enable-pie Build httpd as a Position Independent Executable –enable-modules=MODULE-LIST Space-separated list of modules to enable | “all” | “most” –enable-mods-shared=MODULE-LIST Space-separated list of shared modules to enable | “all” | “most” –disable-authn-file file-based authentication control –enable-authn-dbm DBM-based authentication control –enable-authn-anon anonymous user authentication control –enable-authn-dbd SQL-based authentication control –disable-authn-default authentication backstopper –enable-authn-alias auth provider alias –disable-authz-host host-based authorization control –disable-authz-groupfile ‘require group" authorization control –disable-authz-user ‘require user" authorization control –enable-authz-dbm DBM-based authorization control –enable-authz-owner ‘require file-owner" authorization control –enable-authnz-ldap LDAP based authentication –disable-authz-default authorization control backstopper –disable-auth-basic basic authentication –enable-auth-digest RFC2617 Digest authentication –enable-isapi isapi extension support –enable-file-cache File cache –enable-cache dynamic file caching –enable-disk-cache disk caching module –enable-mem-cache memory caching module –enable-dbd Apache DBD Framework –enable-bucketeer buckets manipulation filter –enable-dumpio I/O dump filter –enable-echo ECHO server –enable-example example and demo module –enable-case-filter example uppercase conversion filter –enable-case-filter-in example uppercase conversion input filter –enable-ext-filter external filter module –disable-include Server Side Includes –disable-filter Smart Filtering –disable-charset-lite character set translation –enable-charset-lite character set translation –enable-deflate Deflate transfer encoding support –enable-ldap LDAP caching and connection pooling services –disable-log-config logging configuration –enable-log-forensic forensic logging –enable-logio input and output logging –disable-env clearing/setting of ENV vars –enable-mime-magic automagically determining MIME type –enable-cern-meta CERN-type meta files –enable-expires Expires header control –enable-headers HTTP header control –enable-ident RFC 1413 identity check –enable-usertrack user-session tracking –enable-unique-id per-request unique ids –disable-setenvif basing ENV vars on headers –enable-version determining httpd version in config files –enable-proxy Apache proxy module –enable-proxy-connect Apache proxy CONNECT module –enable-proxy-ftp Apache proxy FTP module –enable-proxy-http Apache proxy HTTP module –enable-proxy-ajp Apache proxy AJP module –enable-proxy-balancer Apache proxy BALANCER module –enable-ssl SSL/TLS support (mod_ssl) –enable-distcache Select distcache support in mod_ssl –enable-optional-hook-export example optional hook exporter –enable-optional-hook-import example optional hook importer –enable-optional-fn-import example optional function importer –enable-optional-fn-export example optional function exporter –enable-static-support Build a statically linked version of the support binaries –enable-static-htpasswd Build a statically linked version of htpasswd –enable-static-htdigest Build a statically linked version of htdigest –enable-static-rotatelogs Build a statically linked version of rotatelogs –enable-static-logresolve Build a statically linked version of logresolve –enable-static-htdbm Build a statically linked version of htdbm –enable-static-ab Build a statically linked version of ab –enable-static-checkgid Build a statically linked version of checkgid –enable-static-htcacheclean Build a statically linked version of htcacheclean –enable-static-httxt2dbm Build a statically linked version of httxt2dbm –enable-http HTTP protocol handling –disable-mime mapping of file-extension to MIME –enable-dav WebDAV protocol handling –disable-status process/thread monitoring –disable-autoindex directory listing –disable-asis as-is filetypes –enable-info server information –enable-suexec set uid and gid for spawned processes –disable-cgid CGI scripts –enable-cgi CGI scripts –disable-cgi CGI scripts –enable-cgid CGI scripts –enable-dav-fs DAV provider for the filesystem –enable-dav-lock DAV provider for generic locking –enable-vhost-alias mass virtual hosting module –disable-negotiation content negotiation –disable-dir directory request handling –enable-imagemap server-side imagemaps –disable-actions Action triggering on requests –enable-speling correct common URL misspellings –disable-userdir mapping of requests to user-specific directories –disable-alias mapping of requests to different filesystem parts –enable-rewrite rule based URL manipulation –enable-so DSO capabilitySome influential environment variables:一些有影响的环境变量: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a nonstandard directory <lib dir> CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I<include dir> if you have headers in a nonstandard directory <include dir> CPP C preprocessor
2023-07-16 11:29:161

linux下安装文件总是提示./configure --prefix: 没有那个文件或目录

你要cd到源代码放的目录然后再./configure知道吗?
2023-07-16 11:29:385

linux下configure不成功

configure失败可能是依赖缺失,环境不支持等原因具体的原因一般会打印出来,根据输出的错误信息,具体判断错误原因,只说不成功,可能的原因太多,无法具体回答
2023-07-16 11:30:321

configure错误2

如果您将软件包安装在非标准位置,则必须告诉configure脚本在哪里可以找到软件包。举个例子,实际情况你自我判断:如果您将HDF5安装在中/usr/local/hdf5,那么我假设您的意思是如果您将软件包安装在非标准位置,则必须告诉configure脚本在哪里可以找到软件包。举个例子,实际情况你自我判断:如果您将HDF5安装在中/usr/local/hdf5,那么我假设您的意思是I/usr/local/hdf5/include”告诉编译器在哪里可以找到它们。
2023-07-16 11:30:391

configure运行后怎么全是no

你解压了后要进入那个目录里面再执行./configure...可以看看README或INSTALL文件...有些他没有configure的..像我安装的新氧主题包什么的..里面有相关的安装文件..有点像是批处理文件..不要你执行./configure make&makeinstall ..他是直接执行./install什么的就可全部安装了..当然好多还是要./configue make&make install..还是那句话看看REAMDE..里面是安装说明
2023-07-16 11:30:461

请教解决 configure:error:C compiler cannot create executables

这个错误产生的原因其实很简单: 由于我们在编译软件之前,进行了export操作,改变了CFLAGS和LIBS的值。这个时候只要讲这个值清空就可以了。sh export LIBS=sh export CFLAGS=
2023-07-16 11:30:531

Linux系统中如何执行“./configure”命令?

到要编译的 文件所在文件夹,输入configure -h。一般来说默认参数就是虽然不是最佳但一般都可以用。
2023-07-16 11:32:211

./configure 是什么意思?是不是得在哪个特定的目录下用?

./configure是源代码安装的第一步,主要的作用是对即将安装的软件进行配置,检查当前的环境是否满足要安装软件的依赖关系,但并不是所有的tar包都是源代码的包,楼主可以ls看看有没有configure这个文件,也许你下的是二进制的包,如果是二进制的包,解压后直接就能使用。具体如下:1、简介Linux操作系统是基于UNIX操作系统发展而来的一种克隆系统,它诞生于1991 年的 [Linux桌面] 10 月5 日(这是第一次正式向外公布的时间)。以后借助于Internet网络,并通过全世界各地计算机爱好者的共同努力,已成为今天世界上使用最多的一种UNIX 类操作系统,并且使用人数还在迅猛增长。2、基本信息Linux[2]操作系统是UNIX操作系统的一种克隆系统,它诞生linux系统于1991 年的10 月5 日(这是第一次正式向外公布的时间)。以后借助于Internet网络,并通过全世界各地计算机爱好者的共同努力,已成为今天世界上使用最多的一种UNIX 类操作系统,并且使用人数还在迅猛增长。3、分区规定设备管理在 Linux 中,每一个硬件设备都映射到一个系统的文件,对于硬盘、光驱等,IDE 或 SCSI 设备也不例外。Linux 把各种 IDE 设备分配了一个由 hd 前缀组成的文件;而对于各种 SCSI 设备,则分配了一个由 sd 前缀组成的文件。
2023-07-16 11:34:021

linuxstress安装提示没有configure

重新编译安装即可解决。linuxstress安装提示没有configure解决办法以安装hdf5软件为例,具体操作步骤如下:1、首先从官网下载hdf5,根据自己的要求下载对应的版本:hdf5-1.8.3.tar.gz。2、然后上传到服务器某个目录下,比如/opt目录。3、接着解压安装包,输入命令:tar -xvf hdf5-1.8.3.tar.gz。4、解压后会生成一个目录:hdf5-1.8.3。5、再输入:cd hdf5-1.8.3/,切换目录到hdf5-1.8.3。6、最后依次输入以下命令:./configure --prefix=/usr/local/hdf5;make;make check;make install,等待安装信息输出结束后,即可在Linux中安装成功。
2023-07-16 11:34:101

yum 怎么安装 configure

在编译R之前,需要通过yum安装以下几个程序:#yum install gcc-gfortran #否则报”configure: error: No F77 compiler found”错误#yum install gcc gcc-c++ #否则报”configure: error: C++ preprocessor “/lib/cpp” fails sanity check”错误#yum install readline-devel #否则报”–with-readline=yes (default) and headers/libs are not available”错误#yum install libXt-devel #否则报”configure: error: –with-x=yes (default) and X11 headers/libs are not available”错误然后下载源代码,编译[root@192 ~]# wget http://ftp.ctex.org/mirrors/CRAN/src/base/R-3/R-3.1.1.tar.gz--2014-08-29 23:45:18-- http://ftp.ctex.org/mirrors/CRAN/src/base/R-3/R-3.1.1.tar.gzResolving ftp.ctex.org... 159.226.47.4Connecting to ftp.ctex.org|159.226.47.4|:80... connected.HTTP request sent, awaiting response... 200 OKLength: 28606569 (27M) [application/x-gzip]Saving to: “R-3.1.1.tar.gz”100%[+++++++++++++++++++++++++++++++++++++=>] 28,606,569 9.86K/s in 1m 49s 2014-08-30 03:03:40 (6.78 KB/s) - “R-3.1.1.tar.gz” saved [28606569/28606569][root@192 ~]#tar zxvf R-3.1.1.tar.gzR-3.1.1/doc/manual/images/QQ.pngR-3.1.1/doc/html/about.htmlR-3.1.1/doc/html/favicon.icoR-3.1.1/doc/html/index-default.htmlR-3.1.1/doc/html/left.jpgR-3.1.1/doc/html/logo.jpgR-3.1.1/doc/html/logosm.jpgR-3.1.1/doc/html/Makefile.inR-3.1.1/doc/html/NEWS.2.htmlR-3.1.1/doc/html/NEWS.htmlR-3.1.1/doc/html/packages-head-utf8.htmlR-3.1.1/doc/html/R-admin.htmlR-3.1.1/doc/html/R.cssR-3.1.1/doc/html/resources.htmlR-3.1.1/doc/html/right.jpgR-3.1.1/doc/html/Search.htmlR-3.1.1/doc/html/SearchOn.htmlR-3.1.1/doc/html/up.jpg[root@192 ~]# cd R-3.1.1[root@192 ~]# ./configureR is now configured for x86_64-unknown-linux-gnu Source directory: . Installation directory: /usr/local C compiler: gcc -std=gnu99 -g -O2 Fortran 77 compiler: gfortran -g -O2 C++ compiler: g++ -g -O2 C++ 11 compiler: g++ -std=c++0x -g -O2 Fortran 90/95 compiler: gfortran -g -O2 Obj-C compiler: Interfaces supported: X11 External libraries: readline Additional capabilities: NLS Options enabled: shared BLAS, R profiling Recommended packages: yes configure: WARNING: you cannot build info or HTML versions of the R manualsconfigure: WARNING: you cannot build PDF versions of the R manualsconfigure: WARNING: you cannot build PDF versions of vignettes and help pages[root@192 R-3.1.1]# makemake[1]: Entering directory `/root/R-3.1.1/m4"make[1]: Nothing to be done for `R".make[1]: Leaving directory `/root/R-3.1.1/m4"make[1]: Entering directory `/root/R-3.1.1/tools"make[1]: Nothing to be done for `R".make[1]: Leaving directory `/root/R-3.1.1/tools"make[1]: Entering directory `/root/R-3.1.1/doc"trying to compile and link a JNI progamdetected JNI cpp flags :detected JNI linker flags : -L$(JAVA_HOME)/lib/amd64/server -ljvmmake[2]: Entering directory `/tmp/Rjavareconf.9RgDis"gcc -std=gnu99 -I/root/R-3.1.1/include -DNDEBUG -I/usr/local/include -fpic -g -O2 -c conftest.c -o conftest.oconftest.c:1:17: error: jni.h: No such file or directoryconftest.c: In function ‘main":conftest.c:4: warning: implicit declaration of function ‘JNI_CreateJavaVM"make[2]: *** [conftest.o] Error 1make[2]: Leaving directory `/tmp/Rjavareconf.9RgDis"Unable to compile a JNI programJAVA_HOME : /usr/lib/jvm/Java-1.7.0-openjdk-1.7.0.65.x86_64/jreJava library path:JNI cpp flags :JNI linker flags :Updating Java configuration in /root/R-3.1.1Done. make[1]: Leaving directory `/root/R-3.1.1" [root@192 R-3.1.1]# make installinstalling packages ... building HTML index ...make[2]: Leaving directory `/root/R-3.1.1/src/library"make[1]: Leaving directory `/root/R-3.1.1/src"make[1]: Entering directory `/root/R-3.1.1/tests"make[1]: Nothing to be done for `install".make[1]: Leaving directory `/root/R-3.1.1/tests"到此,安装完毕!测试:[root@192 R-3.1.1]# R R version 3.1.1 (2014-07-10) -- "Sock it to Me"Copyright (C) 2014 The R Foundation for Statistical ComputingPlatform: x86_64-unknown-linux-gnu (64-bit) R is free software and comes with ABSOLUTELY NO WARRANTY.You are welcome to redistribute it under certain conditions.Type "license()" or "licence()" for distribution details. Natural language support but running in an English locale R is a collaborative project with many contributors.Type "contributors()" for more information and"citation()" on how to cite R or R packages in publications. Type "demo()" for some demos, "help()" for on-line help, or"help.start()" for an HTML browser interface to help.Type "q()" to quit R.> head(iris) Sepal.Length Sepal.Width Petal.Length Petal.Width Species1 5.1 3.5 1.4 0.2 setosa2 4.9 3.0 1.4 0.2 setosa3 4.7 3.2 1.3 0.2 setosa4 4.6 3.1 1.5 0.2 setosa5 5.0 3.6 1.4 0.2 setosa6 5.4 3.9 1.7 0.4 setosa尝试安装shiny包> install.packages("shiny")Selection: 20also installing the dependencies ‘Rcpp", ‘bitops", ‘httpuv", ‘caTools", ‘RJSONIO", ‘xtable", ‘digest", ‘htmltools" trying URL "http://mirror.bjtu.edu.cn/cran/src/contrib/Rcpp_0.11.2.tar.gz"Content type "application/octet-stream" length 2004313 bytes (1.9 Mb)opened URL==================================================downloaded 8734 bytes trying URL "http://mirror.bjtu.edu.cn/cran/src/contrib/httpuv_1.3.0.tar.gz"Content type "application/octet-stream" length 423739 bytes (413 Kb)opened URL> library(shiny)> runExample("01_hello") Listening on http://127.0.0.1:7964测试完毕!
2023-07-16 11:34:171

Linux中./configure 没有那个文件或目录

./configure是源代码安装的第一步,主要的作用是对即将安装的软件进行配置,检查当前的环境是否满足要安装软件的依赖关系,但并不是所有的tar包都是源代码的包,楼主可以ls看看有没有configure这个文件,也许你下的是二进制的包,如果是二进制的包,解压后直接就能使用。二进制的mysql包,可以放到任意位置,所有的命令都是解压后目录的bin目录下,你要想在任意目录都能使用mysql的命令,需要把bin目录加到PATH环境变量中,比如你的mysql目录是/usr/local/mysql,你可以这样添加环境变量,vi~/.bash_profile在文件的最后面添加PATH=$PATH:/usr/local/mysql/binexportPATH然后执行source~/.bash_profile这样就可以在任意目录执行mysql的所有命令了
2023-07-16 11:34:461

可使用命令 configure 进入哪几种配置模式?

可以进入全局配置模式用户命令模式全局接口配置基本就这仨
2023-07-16 11:34:581

Linux中./configure 没有那个文件或目录

看样子你这个是二进制的包,这就要求你熟悉mysql的使用和配置了。
2023-07-16 11:35:174

configured是什么意思

configured 英[ku0259n"fu026aɡu0259d] 美[ku0259n"fu026aɡu0259d] v. 设定; 配置( configure的过去式和过去分词 ); 使成形; 使具一定形式; [例句]Available devices can be used and configured.可用的设备可以使用和配置。[其他] 原型: configure
2023-07-16 11:35:331

linux上安装python3.4.4,执行./configure的时候报错,怎么解决

config.log的内容:This file contains any messages produced by compilers whilerunning configure, to aid debugging if configure makes a mistake.It was created by python configure 3.4, which wasgenerated by GNU Autoconf 2.69. Invocation command line was$ ./configure## --------- #### Platform. #### --------- ##hostname = hbttdb1uname -m = x86_64uname -r = 2.6.32-279.el6.x86_64uname -s = Linuxuname -v = #1 SMP Wed Jun 13 18:24:36 EDT 2012/usr/bin/uname -p = unknown/bin/uname -X = unknown/bin/arch = x86_64/usr/bin/arch -k = unknown/usr/convex/getsysinfo = unknown/usr/bin/hostinfo = unknown/bin/machine = unknown/usr/bin/oslevel = unknown/bin/universe = unknownPATH: /usr/lib64/qt-3.3/binPATH: /usr/local/sbinPATH: /usr/local/binPATH: /sbinPATH: /binPATH: /usr/sbinPATH: /usr/binPATH: /root/binPATH: /data/oracle/app/oracle/product/11.2.0/binPATH: .## ----------- #### Core tests. #### ----------- ##configure:2894: checking build system typeconfigure:2908: result: x86_64-unknown-linux-gnuconfigure:2928: checking host system typeconfigure:2941: result: x86_64-unknown-linux-gnuconfigure:3053: checking for --enable-universalsdkconfigure:3100: result: noconfigure:3123: checking for --with-universal-archsconfigure:3138: result: noconfigure:3288: checking MACHDEPconfigure:3494: result: linuxconfigure:3518: checking for --without-gccconfigure:3541: result: noconfigure:3665: checking for gccconfigure:3681: found /usr/bin/gccconfigure:3692: result: gccconfigure:3921: checking for C compiler versionconfigure:3930: gcc --version >&5gcc (GCC) 4.4.7 20120313 (Red Hat 4.4.7-4)Copyright (C) 2010 Free Software Foundation, Inc.This is free software; see the source for copying conditions. There is NOwarranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.configure:3941: $? = 0configure:3930: gcc -v >&5Using built-in specs.Target: x86_64-redhat-linuxConfigured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=Red Hat Bugzilla Main Page --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-ppl --with-cloog --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linuxThread model: posixgcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC) configure:3941: $? = 0configure:3930: gcc -V >&5gcc: "-V" option must have argumentconfigure:3941: $? = 1configure:3930: gcc -qversion >&5gcc: unrecognized option "-qversion"gcc: no input filesconfigure:3941: $? = 1configure:3961: checking whether the C compiler worksconfigure:3983: gcc conftest.c >&5configure:3987: $? = 0configure:4035: result: yesconfigure:4038: checking for C compiler default output file nameconfigure:4040: result: a.outconfigure:4046: checking for suffix of executablesconfigure:4053: gcc -o conftest conftest.c >&5configure:4057: $? = 0configure:4079: result: configure:4101: checking whether we are cross compilingconfigure:4109: gcc -o conftest conftest.c >&5In file included from /usr/include/stdio.h:75,from conftest.c:11:/usr/include/libio.h:332: error: expected specifier-qualifier-list before "size_t"/usr/include/libio.h:364: error: expected declaration specifiers or "..." before "size_t"/usr/include/libio.h:373: error: expected declaration specifiers or "..." before "size_t"/usr/include/libio.h:495: error: expected "=", ",", ";", "asm" or "__attribute__" before "_IO_sgetn"In file included from conftest.c:11:/usr/include/stdio.h:318: error: expected declaration specifiers or "..." before "size_t"/usr/include/stdio.h:324: error: expected declaration specifiers or "..." before "size_t"/usr/include/stdio.h:336: error: expected declaration specifiers or "..." before "size_t"/usr/include/stdio.h:343: error: expected declaration specifiers or "..." before "size_t"/usr/include/stdio.h:385: error: expected declaration specifiers or "..." before "size_t"/usr/include/stdio.h:387: error: format string argument not a string type/usr/include/stdio.h:389: error: expected declaration specifiers or "..." before "size_t"/usr/include/stdio.h:391: error: format string argument not a string type/usr/include/stdio.h:661: error: expected declaration specifiers or "..." before "size_t"/usr/include/stdio.h:664: error: expected declaration specifiers or "..." before "size_t"/usr/include/stdio.h:674: error: expected declaration specifiers or "..." before "size_t"/usr/include/stdio.h:704: error: expected "=", ",", ";", "asm" or "__attribute__" before "fread"/usr/include/stdio.h:710: error: expected "=", ",", ";", "asm" or "__attribute__" before "fwrite"/usr/include/stdio.h:732: error: expected "=", ",", ";", "asm" or "__attribute__" before "fread_unlocked"/usr/include/stdio.h:734: error: expected "=", ",", ";", "asm" or "__attribute__" before "fwrite_unlocked"configure:4113: $? = 1configure:4120: ./conftest./configure: line 4122: ./conftest: No such file or directoryconfigure:4124: $? = 127configure:4131: error: in `/root/msk/py_workspace/py_setup/Python-3.4.4":configure:4133: error: cannot run C compiled programs.If you meant to cross compile, use `--host".See `config.log" for more details## ---------------- #### Cache variables. #### ---------------- ##ac_cv_build=x86_64-unknown-linux-gnuac_cv_env_CC_set=ac_cv_env_CC_value=ac_cv_env_CFLAGS_set=ac_cv_env_CFLAGS_value=ac_cv_env_CPPFLAGS_set=ac_cv_env_CPPFLAGS_value=ac_cv_env_CPP_set=ac_cv_env_CPP_value=ac_cv_env_LDFLAGS_set=ac_cv_env_LDFLAGS_value=ac_cv_env_LIBS_set=ac_cv_env_LIBS_value=ac_cv_env_MACHDEP_set=ac_cv_env_MACHDEP_value=ac_cv_env_PKG_CONFIG_LIBDIR_set=ac_cv_env_PKG_CONFIG_LIBDIR_value=ac_cv_env_PKG_CONFIG_PATH_set=ac_cv_env_PKG_CONFIG_PATH_value=ac_cv_env_PKG_CONFIG_set=ac_cv_env_PKG_CONFIG_value=ac_cv_env_build_alias_set=ac_cv_env_build_alias_value=ac_cv_env_host_alias_set=ac_cv_env_host_alias_value=ac_cv_env_target_alias_set=ac_cv_env_target_alias_value=ac_cv_host=x86_64-unknown-linux-gnuac_cv_prog_ac_ct_CC=gcc## ----------------- #### Output variables. #### ----------------- ##ABIFLAGS=""AR=""ARCH_RUN_32BIT=""ARFLAGS=""ASDLGEN=""BASECFLAGS=""BASECPPFLAGS=""BLDLIBRARY=""BLDSHARED=""BUILDEXEEXT=""CC="gcc"CCSHARED=""CFLAGS=""CFLAGSFORSHARED=""CFLAGS_NODIST=""CONFIGURE_MACOSX_DEPLOYMENT_TARGET=""CONFIG_ARGS=""CPP=""CPPFLAGS=""CXX=""DEFS=""DLINCLDIR=""DLLLIBRARY=""DYNLOADFILE=""ECHO_C=""ECHO_N="-n"ECHO_T=""EGREP=""ENSUREPIP=""EXEEXT=""EXPORT_MACOSX_DEPLOYMENT_TARGET="#"EXT_SUFFIX=""FRAMEWORKALTINSTALLFIRST=""FRAMEWORKALTINSTALLLAST=""FRAMEWORKINSTALLAPPSPREFIX=""FRAMEWORKINSTALLFIRST=""FRAMEWORKINSTALLLAST=""FRAMEWORKPYTHONW=""FRAMEWORKUNIXTOOLSPREFIX="/usr/local"GNULD=""GREP=""HAS_HG="no-repository"HAVE_GETHOSTBYNAME=""HAVE_GETHOSTBYNAME_R=""HAVE_GETHOSTBYNAME_R_3_ARG=""HAVE_GETHOSTBYNAME_R_5_ARG=""HAVE_GETHOSTBYNAME_R_6_ARG=""HGBRANCH=""HGTAG=""HGVERSION=""INSTALL_DATA=""INSTALL_PROGRAM=""INSTALL_SCRIPT=""INSTSONAME=""LDCXXSHARED=""LDFLAGS=""LDLAST=""LDLIBRARY=""LDLIBRARYDIR=""LDSHARED=""LDVERSION=""LIBC=""LIBFFI_INCLUDEDIR=""LIBM=""LIBOBJS=""LIBPL=""LIBRARY=""LIBS=""LIBTOOL_CRUFT=""LINKCC=""LINKFORSHARED=""LIPO_32BIT_FLAGS=""LN=""LTLIBOBJS=""MACHDEP="linux"MACHDEP_OBJS=""MAINCC=""MKDIR_P=""MULTIARCH=""NO_AS_NEEDED=""OBJEXT=""OPT=""OTHER_LIBTOOL_OPT=""PACKAGE_BUGREPORT="List of issues - Python tracker"PACKAGE_NAME="python"PACKAGE_STRING="python 3.4"PACKAGE_TARNAME="python"PACKAGE_URL=""PACKAGE_VERSION="3.4"PATH_SEPARATOR=":"PKG_CONFIG=""PKG_CONFIG_LIBDIR=""PKG_CONFIG_PATH=""PLATDIR="plat-linux"PY3LIBRARY=""PYTHON=""PYTHONFRAMEWORK=""PYTHONFRAMEWORKDIR="no-framework"PYTHONFRAMEWORKIDENTIFIER="org.python.python"PYTHONFRAMEWORKINSTALLDIR=""PYTHONFRAMEWORKPREFIX=""PYTHON_FOR_BUILD="./$(BUILDPYTHON) -E"PY_ENABLE_SHARED=""RANLIB=""READELF=""RUNSHARED=""SGI_ABI=""SHELL="/bin/sh"SHLIBS=""SHLIB_SUFFIX=""SIGNAL_OBJS=""SOABI=""SOVERSION="1.0"SRCDIRS=""TCLTK_INCLUDES=""TCLTK_LIBS=""THREADHEADERS=""THREADOBJ=""TRUE=""UNIVERSALSDK=""UNIVERSAL_ARCH_FLAGS=""USE_INLINE=""USE_SIGNAL_MODULE=""USE_THREAD_MODULE=""VERSION="3.4"_PYTHON_HOST_PLATFORM=""ac_ct_AR=""ac_ct_CC="gcc"ac_ct_CXX=""ac_ct_READELF=""bindir="${exec_prefix}/bin"build="x86_64-unknown-linux-gnu"build_alias=""build_cpu="x86_64"build_os="linux-gnu"build_vendor="unknown"datadir="${datarootdir}"datarootdir="${prefix}/share"docdir="${datarootdir}/doc/${PACKAGE_TARNAME}"dvidir="${docdir}"exec_prefix="NONE"host="x86_64-unknown-linux-gnu"host_alias=""host_cpu="x86_64"host_os="linux-gnu"host_vendor="unknown"htmldir="${docdir}"includedir="${prefix}/include"infodir="${datarootdir}/info"libdir="${exec_prefix}/lib"libexecdir="${exec_prefix}/libexec"localedir="${datarootdir}/locale"localstatedir="${prefix}/var"mandir="${datarootdir}/man"oldincludedir="/usr/include"pdfdir="${docdir}"prefix="NONE"program_transform_name="s,x,x,"psdir="${docdir}"sbindir="${exec_prefix}/sbin"sharedstatedir="${prefix}/com"sysconfdir="${prefix}/etc"target_alias=""## ----------- #### confdefs.h. #### ----------- ##/* confdefs.h */#define _GNU_SOURCE 1#define _NETBSD_SOURCE 1#define __BSD_VISIBLE 1#define _BSD_TYPES 1#define _DARWIN_C_SOURCE 1#define _XOPEN_SOURCE 700#define _XOPEN_SOURCE_EXTENDED 1#define _POSIX_C_SOURCE 200809Lconfigure: exit 1
2023-07-16 11:35:431

linux命令行为什么输入sudo /configure提示找不到命令

你的configure文件肯定不是在/下,但你写的是 /configure, 所以找不到configure
2023-07-16 11:35:521

android studio 中 configure 在哪

1.创建自定义图标。此处可以去掉,开始用默认的图标就好,到时候再用自己项目的图标替换掉。2.创建启动的Activity。这个勾上,创建好之好可以稍作稍改。3.把工程代码当作库。即如果是给别的工程调用的子工程,你可以勾上这个,以库的形式被调用时只能调用src里的代码,不能调用res里的资源。4.创建工程文件夹到workspace里。5.添加项目工程到工作区。
2023-07-16 11:36:011

虚拟机输入命令./configure报错,请问怎么解决?

缺少perl 的bio模块 安装相关依赖即可楼上都是扯淡
2023-07-16 11:36:122

configure命令只指定host能进行交叉编译吗

可以,"--build=BUILD"指定软件包安装的系统平台.如果没有指定,默认值将是"--host"选项的值. 。"--host=HOST"指定软件运行的系统平台.如果没有指定,将会运行`config.guess"来检测."--target=GARGET"指定软件面向(target to)的系统平台.这主要在程序语言工具如编译器和汇编器上下文中起作用.如果没有指定,默认将使用"--host"选项的值.
2023-07-16 11:36:191

linux ./configure配置时出现以下错误: configure: error: You need bison to build Evolution 这种情况

不是都告诉你是什么错误了么?
2023-07-16 11:36:285

linux无法configure的问题

没错你的gnu解释器太老了,更新一下吧。
2023-07-16 11:36:484

configure的时候怎么指定搜索路径

今天编译一个开源库libartnet的使用demo时候遇到一个问题,之前没遇到过的,记录一下。其实很简单,这个开源库编译安装时,我习惯性地不把它安装到/usr或者/usr/local下,而是安装到/opt下,只是为了以后不想要的时候删掉比较方便,结果编译artnet的demo的时候就编译不了了,因为这个demo程序也是通过configure make 这样的步骤去编译的。具体问题就是在执行configure脚本的时候找不到自己安装在/opt下的库,因为默认不会去那里找库的。那怎么办呢?如果是makefile或者gcc编译命令还好改,直接加搜索路径就可以了,仔细一看,原来这个检查项目依赖的动态链接库的步骤是通过pkg-config工具去完成的,pkg-config工具是去读所有.pc文件的。这些pc文件在哪里找呢?默认会在/usr/lib/、/lib/类似的这些放置比较重要的库的目录下的pkgconfig目录里,如果自己安装了一个库在这些目录里的话,对应库的pc文件也会放到这些目录的pkgconfig目录下,所以可以默认搜索得到。但是自己装得库就不会,你安装在哪里,库的pc文件就在对应pkgconfig目录里,而这pkg-config工具是不知道的。所以我们只需要为PKG_CONFIG_PATH这个环境变量添加自己的库的pc文件存放路径比如/opt/artnet/lib/pkgconfig/,这样在configure的时候就会去搜索这个目录下的动态链接库了。提醒一下:PKG_CONFIG_PATH和PATH变量一样,通过冒号间隔前后两个搜索的路径。pkg-config也是一个有意思的东西啊!
2023-07-16 11:36:551

linux:./configure 如果不指定安装路径,缺省路径应该如何察看?

一般configure脚本会把程序装到/usr/locla/bin
2023-07-16 11:37:174

rhel5下安装win执行./configure的时候出现问题

sudo apt-get install flex bison qt4-qmakeapt-get install libfreetype6-devapt-get install libjpeg-dev libpng-dev libxslt-dev libxml2-dev apt-get install libxrender-devsudo apt-get install libgl1-mesa-devsudo apt-get install libglu1-mesa-devsudo apt-get install freeglut3-devapt-get install prelink apt-get install libasound2-dev没有的就都装了吧~!
2023-07-16 11:37:251

Linux新手,怎么清除configure之后生成的文件

make distclean
2023-07-16 11:37:492