博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Anaconda3 安装报错 bunzip2: command not found
阅读量:4977 次
发布时间:2019-06-12

本文共 1985 字,大约阅读时间需要 6 分钟。

报错信息

Anaconda3-5.3.1-Linux-x86_64.sh: line 353: bunzip2: command not foundtar: This does not look like a tar archivetar: Exiting with failure status due to previous errors

解决方法和原因

由于系统缺少bunzip2包造成的,通过yum安装bzip2包来解决

yum install bzip2

分析和解决过程

可能是由于缺少bunzip2包导致的,先尝试安装这个包:

[root@localhost ~]# yum install bunzip2Loaded plugins: fastestmirrorLoading mirror speeds from cached hostfile * base: mirrors.aliyun.com * extras: mirrors.aliyun.com * updates: mirrors.aliyun.comNo package bunzip2 available.Error: Nothing to do

发现没找到这个包。百度下这个包:

  • bunzip2,.bz2文件的解压缩程序。可解压缩.bz2格式的压缩文件。bunzip2实际上是bzip2的符号连接,执行bunzip2bzip2 -d的效果相同

再次尝试bzip2包名

[root@localhost ~]# yum install bzip2Loaded plugins: fastestmirrorLoading mirror speeds from cached hostfile * base: mirrors.aliyun.com * extras: mirrors.aliyun.com * updates: mirrors.aliyun.comResolving Dependencies--> Running transaction check---> Package bzip2.x86_64 0:1.0.6-13.el7 will be installed--> Finished Dependency ResolutionDependencies Resolved=================================================================================== Package          Arch              Version                  Repository       Size===================================================================================Installing: bzip2            x86_64            1.0.6-13.el7             base             52 kTransaction Summary===================================================================================Install  1 PackageTotal download size: 52 kInstalled size: 82 kIs this ok [y/d/N]: yDownloading packages:bzip2-1.0.6-13.el7.x86_64.rpm                               |  52 kB  00:00:00Running transaction checkRunning transaction testTransaction test succeededRunning transaction  Installing : bzip2-1.0.6-13.el7.x86_64                                       1/1  Verifying  : bzip2-1.0.6-13.el7.x86_64                                       1/1Installed:  bzip2.x86_64 0:1.0.6-13.el7Complete!

再次安装,没有报错,解决该错误。

转载于:https://www.cnblogs.com/linga/p/10220414.html

你可能感兴趣的文章
latexdiff中的大坑:字符编码问题
查看>>
Storyboard、xib中的UIScrollView使用autolayout,使其能够滚动
查看>>
PAT 1050 螺旋矩阵(25)(代码)
查看>>
Linux基本操作命令
查看>>
Java线程同步的方式
查看>>
Perl map()函数
查看>>
RelativeLayout练习
查看>>
Tomcat 的端口被占用的解决办法
查看>>
10. dede5.7标签调用说明
查看>>
bzoj 3207 可持久化线段树+hash
查看>>
解决 Python.h:没有那个文件或目录 错误的方法
查看>>
【Demo 0023】改变窗体的位置, 大小及Z-ORDER
查看>>
【原创】Hibernate通过实体类自动建表时type=MyISAM的问题
查看>>
MySQL系列(五) 锁
查看>>
【图解漏洞】图解跨站脚本攻击(XSS)原理
查看>>
sql 查找某个字符在字符串中第N次出现的位置
查看>>
编译原理:引论
查看>>
LFM 隐语义模型
查看>>
unwrapped与wrapped变量取值的问题
查看>>
[转载]---教大家如何玩转跟踪(to owner session、other session)
查看>>