install.packages Questions
2
Solved
On Ubuntu 14.04, trusty:
install.packages('topicmodels')
Error message:
compilation terminated.
make: *** [ctm.o] Error 1
ERROR: compilation failed for package ‘topicmodels’
* removing ‘/home/.....
Polynuclear asked 10/9, 2014 at 6:49
0
I have a run_stat.r script that can run in command line such as Rscript anova.r on my ubuntu server:
#load package
library(ez)
#run code....
The problem is that the loading time of ez packag...
Dugan asked 21/3, 2017 at 16:52
2
When I tried executing this
install.packages("rcom")
I got warning
package ‘rcom’ is not available (for R version 3.1.2)
I also tried this
install.packages(c(, "rcom"), repos = "http://rcom.univie...
Jawbone asked 3/4, 2015 at 11:11
2
I have written a package that uses devtools to include internal data:
devtools::use_data(.data, internal = T, overwrite = T)
I recently changed that data and rebuilt the package. I want to upgra...
Aileen asked 3/2, 2016 at 6:43
1
In Python, you can have a file requirements.txt where you can store a list of packages used into a file, and whenever other people want to run your programs and need to install the dependenci...
Anglophobe asked 13/8, 2016 at 1:22
1
Actually I am trying to install packages offline. I have R studio. what I do is based on previously asked question as follows:
install.packages(C:/Users/Desktop/class_7.3-12.zip", repos = NULL)
...
Tanbark asked 8/5, 2015 at 12:22
1
I am trying to install a package in R from a local zip file. I have the zip file on a local drive, but when I go to Packages --> Install a package from a local zip file I get the following wa...
Brock asked 31/5, 2016 at 14:15
2
Solved
I am having some trouble installing packages in R on CentOS after updating R. Here is an example of what happens when I try to install a package in R:
> install.packages("ggplot2")
Installing p...
Kizer asked 22/4, 2016 at 21:55
1
I want to install the package "car" but it depends of a package "pbkrtest" I can't install :
ERROR: dependency ‘pbkrtest’ is not available for package ‘car’
Warning in install.packages :
...
Medicaid asked 4/2, 2016 at 17:26
0
Ubuntu, Linux Mint, Debian
ERROR: 'configure' exists but is not executable -- see the 'R Installation and Administration Manual'
Warning in install.packages : installation of package ‘e1071...
Gill asked 23/10, 2015 at 20:14
1
Hopefully this has a straightforward answer, but I haven't been able to find it as yet.
I'm writing an R package, and when installed on Windows I want it to execute a script that searches for a s...
Transmigrant asked 16/8, 2015 at 12:35
1
Solved
This is the code I ran:
install.packages(ISLR);
And this was the response:
>Error in install.packages : object 'ISLR' not found
Any advice?
Bolanos asked 15/6, 2015 at 5:51
1
Solved
I've got the source files for a bunch of packages and their dependencies that I want to install on computers that have no internet access. I want to install all of these on other computers using as...
Wessex asked 5/3, 2015 at 18:43
1
Solved
I am using R Studio on a 2103 MacBook Pro. I had no problems before downloading and installing packages, but recently all my packages are being downloaded and then fail to install:
trying URL 'htt...
Elephantine asked 4/2, 2015 at 3:13
4
Solved
Probably a pretty basic question but a friend and I tried to run str(packge_name) and R threw us an error. Now that I'm looking at it, I'm wondering if an R package is like a .zip file in that it i...
Skvorak asked 13/1, 2015 at 16:12
1
Solved
I am using default command to install multicore package
install.packages('multicore','http://www.rforge.net/')
as written here http://www.rforge.net/multicore/files/ but I recieve warning:
in...
Aileen asked 12/1, 2015 at 12:25
2
I'm developing an app designed to handle big data and was having problems graphing the data in a useful way because of the sheer amount of plot points. My initial idea was to create a little algori...
Gypsie asked 9/8, 2013 at 17:5
3
I'm perplexed. I've done this process a dozen times and never had this issue.
I installed the latest version of R for Ubuntu
I enter R, no issues at all, gives me the latest version, and I can lo...
Coastguardsman asked 17/2, 2014 at 18:53
© 2022 - 2024 — McMap. All rights reserved.