I'd like to install package tiff from rforge (http://www.rforge.net/tiff/index.html) on Mac OS X Mavericks.
我想在Mac OS X Mavericks安装来自rforge的软件包(http://www.rforge.net/tiff/index.html)。
R-Version is
R-Version是
> version
_
platform x86_64-apple-darwin13.1.0
arch x86_64
os darwin13.1.0
system x86_64, darwin13.1.0
status
major 3
minor 1.0
year 2014
month 04
day 10
svn rev 65387
language R
version.string R version 3.1.0 (2014-04-10)
nickname Spring Dance
Trying to install it I get the following error:
试图安装它,我得到以下错误:
> install.packages("tiff","http://rforge.net/",type="source")
Warning in install.packages :
'lib = "http://rforge.net/"' is not writable
Would you like to use a personal library instead? (y/n) y
versuche URL 'http://cran.rstudio.com/src/contrib/tiff_0.1-5.tar.gz'
Content type 'application/x-gzip' length 28925 bytes (28 Kb)
URL geöffnet
==================================================
downloaded 28 Kb
* installing *source* package ‘tiff’ ...
** Paket ‘tiff’ erfolgreich entpackt und MD5 Summen überprüft
** libs
clang -I/Library/Frameworks/R.framework/Resources/include -DNDEBUG -I/usr/local/include -I/usr/local/include/freetype2 -I/opt/X11/include -fPIC -Wall -mtune=core2 -g -O2 -c common.c -o common.o
In file included from common.c:1:
./common.h:5:10: fatal error: 'tiff.h' file not found
#include <tiff.h>
^
1 error generated.
make: *** [common.o] Error 1
ERROR: compilation failed for package ‘tiff’
* removing ‘/Users/stingl/Library/R/3.1/library/tiff’
Warning in install.packages :
installation of package ‘tiff’ had non-zero exit status
The downloaded source packages are in
‘/private/var/folders/8_/1kgvxblj3ss4pzmsgx3pkysc0000gn/T/RtmpYmsCmF/downloaded_packages’
Any ideas?
什么好主意吗?
1 个解决方案
#1
2
If you've got macports or homebrew installed, you should use them to install libtiff.
如果你已经安装了macports或homebrew,你应该使用它们来安装libtiff。
Here's what you need to run to install libtiff using homebrew:
下面是使用homebrew安装libtiff所需运行的内容:
brew install libtiff
After this is done, you can install the tiff package in R:
完成后,可以在R中安装tiff包:
install.packages("tiff", type="source")
Cheers,
欢呼,
George
乔治
#1
2
If you've got macports or homebrew installed, you should use them to install libtiff.
如果你已经安装了macports或homebrew,你应该使用它们来安装libtiff。
Here's what you need to run to install libtiff using homebrew:
下面是使用homebrew安装libtiff所需运行的内容:
brew install libtiff
After this is done, you can install the tiff package in R:
完成后,可以在R中安装tiff包:
install.packages("tiff", type="source")
Cheers,
欢呼,
George
乔治