1. ホーム
  2. Qt

Linux出现Bash . configure permission denied错误

2022-02-27 02:20:03

当你在Linux(我的是centos 7)下编译安装某个包的时候,你首先是进入到解压目录然后执行“ . / c o n f i g u r e ./configure



bash: ./configure:权限不够??????[英文状态下提示的是“bash . /configure permissiondenied”]



如果你改为执行



$ bash ./configure



那么就没有这个问题了,那为什么会出现这个问题呢?

那是因为那个configure文件非可执行文件的原因,当你在当前目录下执行



c h m o d + x . / c o n f i g u r e c o n f i g u r e ./configure



的方式来安装了。



也就是说解决这个错误的办法是先执行



c h m o d + x . / c o n f i g u r e b a s h bash ./configure



亦可。