在 /usr/lib 中安装 boost 库: sudo ./boostrap.sh 命令未找到
我正在尝试使用 这些说明。这是使用 Ubuntu 10.10。我已将 .zip 文件解压到 /usr/lib
中,并 cd 到 boost_1_45_0
文件夹。然后我运行:
sudo ./boostrap.sh --help
我收到以下错误:
sudo: ./bootstrap.sh: command not found
我不明白为什么会这样,因为 bootstrap.sh
显然位于当前文件夹中。
这是因为我要安装的位置,还是可能是 bootstrap.sh 中找不到的命令?这是一个干净的 Ubuntu 安装,所以我不确定为什么在如此精确地遵循说明时会出现错误。
I am trying to install the Boost C++ libraries using these instructions. This is using Ubuntu 10.10. I have unzipped the .zip file in /usr/lib
, and cd'd to the boost_1_45_0
folder. I then run:
sudo ./boostrap.sh --help
And I get the following error:
sudo: ./bootstrap.sh: command not found
I don't understand why this is, as bootstrap.sh
is clearly there in the current folder.
Is this because of the location I am installing to, or is it perhaps a command within bootstrap.sh that can't be found? It is a clean Ubuntu install so I am unsure as to why I am getting an error when following instructions so precisely.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Unix 上,您确实想从 tarball 安装,而不是
.zip
文件。 Tarball 保留 Unix 权限。要使
./bootstrap.sh
可执行,请发出chmod 755 bootstrap.sh
。On Unix, you really want to install from the tarball, not the
.zip
file. Tarballs preserve Unix permissions.To make
./bootstrap.sh
executable, issuechmod 755 bootstrap.sh
.