This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
** installing vignettes | |
** testing if installed package can be loaded | |
Error : .onLoad failed in loadNamespace() for 'RMySQL', details: | |
call: dyn.load(file, DLLpath = DLLpath, ...) | |
error: unable to load shared object '/usr/local/Cellar/r/3.0.1/R.framework/Versions/3.0/Resources/library/RMySQL/libs/RMySQL.so': | |
dlopen(/usr/local/Cellar/r/3.0.1/R.framework/Versions/3.0/Resources/library/RMySQL/libs/RMySQL.so, 6): Library not loaded: libmysqlclient.18.dylib | |
Referenced from: /usr/local/Cellar/r/3.0.1/R.framework/Versions/3.0/Resources/library/RMySQL/libs/RMySQL.so | |
Reason: image not found | |
Error: loading failed | |
Execution halted | |
ERROR: loading failed | |
* removing ‘/usr/local/Cellar/r/3.0.1/R.framework/Versions/3.0/Resources/library/RMySQL’ | |
sh-3.2# R CMD INSTALL /private/var/folders/n0/4_22_21n66x537xg2kdnc618m0j889/T/RtmpehnXuM/downloaded_packages/RMySQL_0.9-3.tar.gz -h | |
Loading required package: stats | |
Usage: R CMD INSTALL [options] pkgs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Find your R home | |
$ echo "R.home()" | Rscript /dev/stdin | |
Loading required package: stats | |
Loading required package: methods | |
[1] "/usr/local/Cellar/r/3.0.1/R.framework/Resources" | |
# Make sure that you have the MySQL home var in your Renviron | |
$ fgrep MYSQL_HOME /usr/local/Cellar/r/3.0.1/R.framework/Resources/etc/Renviron | |
MYSQL_HOME="/usr/local/mysql-5.6.12-osx10.7-x86_64/" | |
#### This step trips up everyone #### | |
# Make sure that the libmysqlclient dynamic lib is in your R lib path by | |
# 1. Get the dll path | |
$ echo "Sys.getenv('DYLD_FALLBACK_LIBRARY_PATH')" | Rscript /dev/stdin | |
Loading required package: stats | |
Loading required package: methods | |
[1] "/usr/local/Cellar/r/3.0.1/R.framework/Resources/lib" | |
# 2. Symlink your libmysqlclient | |
$ ln -s /usr/local/mysql-5.6.12-osx10.7-x86_64/lib/libmysqlclient.18.dylib /usr/local/Cellar/r/3.0.1/R.framework/Resources/lib | |
# 3. Install the package | |
$ export PKG_LIBS="-L/usr/local/mysql-5.6.12-osx10.7-x86_64/lib/ -lmysqlclient" | |
$ export PKG_CPPFLAGS="-I/usr/local/mysql-5.6.12-osx10.7-x86_64/include/" | |
$ R CMD INSTALL RMySQL.tar.gz | |
... | |
... | |
** installing vignettes | |
** testing if installed package can be loaded | |
* DONE (RMySQL) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> library("RMySQL") | |
Attaching package: ‘RMySQL’ | |
The following object is masked from ‘package:RSQLite’: | |
dbBuildTableDefinition, isIdCurrent, safe.write | |
> library("RMySQL") | |
> m <- dbDriver("MySQL") | |
> con <- dbConnect(m, user="root", host="localhost") | |
> rs <- dbSendQuery(con, "show databases") | |
> fetch(rs, n=100) | |
Database | |
1 information_schema | |
2 xxxxxxxxxx | |
3 mysql | |
4 performance_schema | |
5 test | |
> rs <- dbSendQuery(con, "select * from information_schema.STATISTICS limit 5;") | |
> fetch(rs, n=100) | |
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT | |
1 def mysql columns_priv 0 mysql PRIMARY 1 Host A NA NA <NA> BTREE | |
2 def mysql columns_priv 0 mysql PRIMARY 2 Db A NA NA <NA> BTREE | |
3 def mysql columns_priv 0 mysql PRIMARY 3 User A NA NA <NA> BTREE | |
4 def mysql columns_priv 0 mysql PRIMARY 4 Table_name A NA NA <NA> BTREE | |
5 def mysql columns_priv 0 mysql PRIMARY 5 Column_name A 0 NA <NA> BTREE | |
INDEX_COMMENT |
Thanks! This helped me greatly.
ReplyDeleteThank you thank you thank you!
ReplyDeleteThank you so much for this, but on my install of R3.1, the echo home() command threw:
ReplyDelete[1] "/Library/Frameworks/R.framework/Resources"
and echo "Sys.getenv('DYLD_FALLBACK_LIBRARY_PATH')" | Rscript /dev/stdin
[1] "/Library/Frameworks/R.framework/Resources/lib"
I am still getting the same error:
Error : .onLoad failed in loadNamespace() for 'RMySQL', details:
call: dyn.load(file, DLLpath = DLLpath, ...)
error: unable to load shared object '/Users/myname/Library/R/3.1/library/RMySQL/libs/RMySQL.so':
dlopen(/Users/myname/Library/R/3.1/library/RMySQL/libs/RMySQL.so, 6): Library not loaded: libmysqlclient.18.dylib
Referenced from: /Users/myname/Library/R/3.1/library/RMySQL/libs/RMySQL.so
Reason: image not found
Error: loading failed
Execution halted
ERROR: loading failed
Any ideas?
Hi,
DeleteI was able to get to * DONE (RMySQL) using the steps above however Library("RMySQL") failed for me giving the following error:
Error : .onLoad failed in loadNamespace() for 'RMySQL', details:
call: dyn.load(file, DLLpath = DLLpath, ...)
error: unable to load shared object '/Library/Frameworks/R.framework/Versions/3.1/Resources/library/RMySQL/libs/RMySQL.so':
dlopen(/Library/Frameworks/R.framework/Versions/3.1/Resources/library/RMySQL/libs/RMySQL.so, 6): Library not loaded: libmysqlclient.18.dylib
Referenced from: /Library/Frameworks/R.framework/Versions/3.1/Resources/library/RMySQL/libs/RMySQL.so
Reason: image not found
Error: package or namespace load failed for ‘RMySQL’
I am using the R 3.1.1 GUI 1.65 Mavericks build (6784)
HOWEVER
library("RMySQL") works perfectly in RStudio and I am able to run all the tests above without a hitch
hope this helps
Also want to say thank you thank you thank you!
ReplyDeleteIt's caused by environment variables http://herrdu.cc/2014/12/06/R-install-RMySQL-on-Mac/
ReplyDeleteI'm getting the following error message trying to install on Yosemite:
ReplyDelete$ R CMD INSTALL RMySQL_0.9-3.tar.gz
./RS-MySQL.h:32:10: fatal error: 'mysql.h' file not found
#include
^
1 error generated.
make: *** [RS-MySQL.o] Error 1
ERROR: compilation failed for package ‘RMySQL’
* removing ‘/Users/salah1/Library/R/3.1/library/RMySQL’
You probably don't have mysql development headers in your path.
Delete