RSS Subscription
Linux Howtos & Tutorials

Enter your email:

Delivered by


NOTE:New tutorials are from LinuxCareer.com

Poll

Do you own or wish to have iPhone?
 


Linux eBooks FREE Download
A guide to programming Linux kernel modules
Introduction to Linux - A Hands on Guide
A Newbie's Getting Started Guide to Linux

Linux from Scratch - Create Your Own Linux System - Free eBook

Linux: The Hacking Solution (v.3.0)

SQLite 3 with PHP Essential Training – Free Video Training Tutorials

This guide will introduce you to the world of GNU/Linux

The GNU/Linux Advanced Administration

A Complete Beginner's Manual for Ubuntu 10.04 (Lucid Lynx)

Advanced Bash-Scripting Guide

Set up, maintain, and secure a small office email server

Partner Linux Sites:
How-To.LinuxCareer.com
Jobs.LinuxCareer.com
TuxMachines
Monsterb
LinuxBloggers
AdamsInfo
LinuxScrew
All For Linux

GNU R - package not found - how to install

Most of the R packages are available from your Linux distribution's standard repository. In case that you fail load library because is missing, install a package which comes with your linux distribution.

> library(package)
Error in library(package) : there is no package called 'package'

If you cannot find such a package in your distribution repository, there is always a way to install it using R interface it self.
First locate your desired R package source file on the cran mirror: http://cran.r-project.org/ and then download the package source file to some directory. /tmp/ would be also fine.
then run a following R command from the shell:

R CMD INSTALL

this will do nothing but it will output a library directory if set. The following command will compile and install R package( -l /my/library/path/ to select different install destination):

R CMD INSTALL /tmp/numDeriv_2009.2-1.tar.gz

Share this linux post:

Submit GNU R - package not found - how to install in Delicious Submit GNU R - package not found - how to install in Digg Submit GNU R - package not found - how to install in FaceBook Submit GNU R - package not found - how to install in Google Bookmarks Submit GNU R - package not found - how to install in Stumbleupon Submit GNU R - package not found - how to install in Technorati Submit GNU R - package not found - how to install in Twitter
 
Comments for this page are closed !!!
Please visit our new Linux Forum for additional help or discussion.


Linux eBooks FREE Download