Installing Quantstrat in a recently updated R on Fedora Linux

I recently updated my Fedora distribution and also updated R. I have installed most of the packages, but I cannot install blotter and quantstrat.

How can I solve this problem? Thank!

The error I am getting is the following:

install.packages("quantstrat", repos="http://R-Forge.R-project.org")

      

Warning in install.packages folder: package 'Quantstrat is not available (for version R 3.4.3)

My session info is this:

> sessionInfo()

      

R version 3.4.0 (2017-04-21) Platform: x86_64-redhat-linux-gnu (64-bit) Run under: Fedora 25 (Twenty-five)

Matrix products: default BLAS / LAPACK: /usr/lib64/R/lib/libRblas.so

locale: [1] LC_CTYPE = es_AR.UTF-8 LC_NUMERIC = C LC_TIME = es_AR.UTF-8 LC_COLLATE = es_AR.UTF-8
 [5] LC_MONETARY = es_AR.UTF-8 LC_MESSAGES = es_AR.UTF-8 LC_PAPER UTF-8 LC_NAME = C
 [9] LC_ADDRESS = C LC_TELEPHONE = C LC_MEASUREMENT = es_AR.UTF-8 LC_IDENTIFICATION = C

base packages included: [1] stats graphics grDevices utils datasets database methods

loaded via namespace (and not attached): [1] compiler_3.4.0 tools_3.4.0

+3


source to share


2 answers


Your problem is probably not a Linux related issue. Install quantumstrat from sous via github where the last code is:



library(devtools) # need devtools to use install_github
install_github("braverock/quantstrat")

      

+2


source


Many thanks! I did it successfully! In both my Fedora and W10 laptop.

I installed a week ago. I had to wait for the new TS package to be available on tap as it required a blotter.



Many thanks!

0


source







All Articles