PCL1.7库在Ubuntu环境下提示:pcl-viewer :command not found
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PCL1.7库在Ubuntu环境下提示:pcl-viewer :command not found相关的知识,希望对你有一定的参考价值。
PCL1.7库在Ubuntu环境下提示:pcl-viewer :command not foundUbuntu 是14.04的。不知道是不是依赖库没有完全安装完毕的原因
Ubuntu系统操作中,在使用sudo的时候出现sudo:source:command notfound错误提示,遇到这种问题要如何处理呢?下面为解决方法。
Ubuntu Server上执行以下命令,可以看到默认打开的文件数限制为1024个。
$ ulimit -n
1024
编辑/etc/profile配置文件,在最后添加一行:
ulimit -SHn 65535
要让配置生效:
$ sudo source /etc/profile
sudo: source: command not found
我们直接执行ulimit -SHn 65535命令又会怎么样呢?
$ ulimit -SHn 65535
-bash: ulimit: open files: cannot modify limit: Operation not permitted
$ sudo ulimit -SHn 65535
sudo: ulimit: command not found
普通用户获得root权限后反而提示找不到命令了,该如何解决这个问题呢?
$ sudo -s
# source /etc/profile
再次执行ulimit,可以看到打开文件的限制数已改为65535了。
# ulimit -n追问
谢谢啦,但是并不是在sudo的时候。
是安装了PCL,写代码把点云信息写入到PCD文件里,尝试用pcl-viewer命令打开PCD文件的时候报这个错了
sudo apt-get install pcl-tools
在ROS下建立编译链接PCL模块
文章目录
以上是关于PCL1.7库在Ubuntu环境下提示:pcl-viewer :command not found的主要内容,如果未能解决你的问题,请参考以下文章
Ubuntu环境下,项目出现:Call to undefined function curl_init() 提示
Ubuntu环境下,项目出现:Call to undefined function curl_init() 提示