首页 > 其他分享 >vcftools 快速安装日志

vcftools 快速安装日志

时间:2023-11-03 17:44:59浏览次数:41  
标签:vcftools configure tar zlib 报错 install 日志 安装

 

下载https://vcftools.github.io/examples.html

tar -xvf vcfools.0.X.XX.tar.gz

export PERL5LIB=/path/to/your/vcftools-directory/src/perl/

cd vcftools/

先执行./autogen.sh

报错autoreconf 找不到 ,执行yum install autoreconf

./configure 

如果这一步执行报错,缺少c++编译器,yum install g++

如果这一步执行报错,缺少zlib,yum install zlib

或者去 http://www.zlib.net/

下载

 tar -xvf zlib-1.3

./configure

make
make install

/usr/local/lib 里看到了zlib的包说明安装好了。

如果这一步报错“Package 'zlib', required by 'virtual:world', not found”,执行./configure ZLIB_CFLAGS=" " ZLIB_LIBS="-lz" SERD_CFLAGS=" " SERD_LIBS="-lz"

 出现这一步说明configure好了。

make

 

make install

 输入vcftools 显示如下:说明安装完毕

 

标签:vcftools,configure,tar,zlib,报错,install,日志,安装
From: https://www.cnblogs.com/marszhw/p/17808078.html

相关文章

  • Mac安装mysql8.0.35
    安装步骤(详细步骤)打开官网https://dev.mysql.com/downloads/mysql/选择自己mac需求的版本以及适合自己mac的版本#查看mac型号架构命令#先commond+空格搜索terminal回车进入终端uname-a先双击打开dmg文件,然后会跳转到pkg里面,双击即可一路下一步即可选......
  • Redhat8.2二进制安装mysql8.0,启动报错
    报错信息:bin/mysql:errorwhileloadingsharedlibraries:libtinfo.so.5:cannotopensharedobjectfile:Nosuchfileordirectory解决办法:ll/usr/lib64/libtinfo.so.6[root@zabbixservermysql]#ln-s/usr/lib64/libtinfo.so.6.2/usr/lib64/libtinfo.so.5[root@zab......
  • Ubuntu系统下安装Dockers
    1、更新系统软件包在安装Docker前,首先需要更新系统软件包,确保系统上的软件都是最新的版本。可以使用以下命令来更新系统:sudoaptupdatesudoaptupgrade2、安装DockerCEDocker提供了不同版本的安装包,分为社区版(CommunityEdition,简称CE)和企业版(EnterpriseEdi......
  • Ubuntu 20↑ 安装postgresql,并且开远程访问。
    postgresql-16安装并且开放外网访问按照官方的教程,我已经将pg官方的地址换成了清华开源镜像站的地址,这样下载的速度更快。安装postgresql下载的源sudosh-c'echo"debhttps://mirrors-i.tuna.tsinghua.edu.cn/postgresql/repos/apt/$(lsb_release-cs)-pgdgmain">/et......
  • Centos7安装Docker
    在CentOS7上安装Docker需要以下步骤:更新系统:使用以下命令更新CentOS系统,确保已经安装了最新的软件包和依赖项。sudoyumupdate安装Docker依赖项:Docker运行需要一些依赖项,使用以下命令安装这些依赖项。sudoyuminstall-yyum-utilsdevice-mapper-persistent-da......
  • Centos7安装openJdk17
    yum安装安装EPEL软件源:使用以下命令安装EPEL软件源,它包含了OpenJDK17的安装包。sudoyuminstallepel-releasesudoyuminstalljava-17-openjdk-develjava--version手动下载压缩包安装解压安装包tar-xvfjdk-17_linux-x64_bin.tar.gz移动解压后的文件夹到/u......
  • pip安装依赖失败
    报错如下Requirementalreadysatisfied:pipinc:\users\ychen\appdata\local\programs\python\python310\lib\site-packages(22.0.4)CollectingpipDownloadingpip-23.3.1-py3-none-any.whl(2.1MB)---------------------------------------0.2/2.1......
  • Scrapy Logging日志
    日志级别Python的内置日志记录定义了5个不同的级别来指示给定日志消息的严重性logging.CRITICAL用于严重错误(最高严重性)logging.ERROR常规错误logging.WARNING用于警告消息logging.INFO用于信息性消息logging.DEBUG用于调试消息(最低严重性)创建项目创建项目scrapystartpro......
  • Linux环境Prometheus接入(一、Prometheus安装)
    环境CentOS7.9安装1、自行下载https://prometheus.io/download/2、命令下载wgethttps://github.com/prometheus/prometheus/releases/download/v2.47.2/prometheus-2.47.2.linux-amd64.tar.gz3、解压tar-zvfprometheus-2.47.2.linux-amd64.tar.gzmvprometheus-2.......
  • Linux环境Prometheus接入(二、Grafana安装)
    环境CentOS7.9安装1、命令下载yuminstall-yhttps://dl.grafana.com/enterprise/release/grafana-enterprise-10.2.0-1.x86_64.rpm2、启动、查看状态systemctlstartgrafana-serversystemctlstatusgrafana-server-l3、修改启动端口cd/etc/grafanavigrafa......