无法在 macOS 上运行 brew 安装的“laszip”版本

无法在 macOS 上运行 brew 安装的“laszip”版本

我正在运行 macOS High Sierra(10.13.2)和 HomeBrew 版本 1.4.1。

laszip使用 在 Mac 上安装了一个应用程序 ( ) brew install laszip。该应用程序似乎已成功安装。但是,当我尝试从终端运行该应用程序或使用 查找它时which laszip,找不到它。

以下是一些详细信息:

$ brew install laszip
Warning: laszip 3.1.1 is already installed
$ brew install --force laszip
Warning: laszip 3.1.1 is already installed
$ brew info laszip
laszip: stable 3.1.1 (bottled), HEAD
Lossless LiDAR compression
https://www.laszip.org/
/usr/local/Cellar/laszip/3.1.1 (23 files, 551KB) *
  Poured from bottle on 2017-12-25 at 11:41:22
From: https://github.com/Homebrew/homebrew-core/blob/master/Formula/laszip.rb
==> Dependencies
Build: cmake ✔
$ laszip
-bash: laszip: command not found
$ which laszip
$ where laszip
-bash: where: command not found
$ whereis laszip
$ brew update
Already up-to-date.
$ brew doctor
Your system is ready to brew.
$ brew uninstall laszip
Uninstalling /usr/local/Cellar/laszip/3.1.1... (23 files, 551KB)
$ brew install laszip
==> Downloading https://homebrew.bintray.com/bottles/laszip-3.1.1.high_sierra.bottle.tar.gz
Already downloaded: /Users/rcanand/Library/Caches/Homebrew/laszip-3.1.1.high_sierra.bottle.tar.gz
==> Pouring laszip-3.1.1.high_sierra.bottle.tar.gz

答案1

根据请参阅 LAStools Google Group 上的这篇文章laszip,通过安装时安装的所有内容brew install laszip都是 LAS 库。

要真正获得使用 LAS 的二进制文件,您需要安装工具,然后像下面这样与这些库进行通信liblas

brew install liblas

说实话,我对这个工具并不是 100% 熟悉,所以你可能比我更清楚用这个命令需要做什么。但brew install laszip似乎还不足以做很多事情。

相关内容