Installing packstack on the controller using:
packstack --answer-file=/root/newton-answer.txt
Results in the following error:
Error appeared during Puppet run controller
Can anyone help? Thanks in advance.
https://i.stack.imgur.com/oENUV.png
Related
I'm not able to install any of the theme and it's been giving this install failed error. Kindly! help me to figure this out.
Kindly! share the steps to solve this error. Thankyou!
When I want to download a package from github by Rstudio, the error message is like this:
devtools::install_github("akoyabio/phenoptr")
Downloading GitHub repo akoyabio/phenoptr#HEAD
Error: Failed to install 'phenoptr' from GitHub:
Line starting 'SystemRequir ...' is malformed!
And then I try to download the package to my PC and install package from local position. The error message appear again.
devtools::install_local("D:\phenoptr-master.zip")
Error: Failed to install 'phenoptr-master.zip' from local:
Line starting 'SystemRequir ...' is malformed!
I don't know why this happened. If anyone could give me some advice to solve the problem?
Thank you very much.
Mengfei Wang
The problem was probably caused by a faulty locale setting. Try setting your locale by running
Sys.setlocale("LC_ALL","en_US.UTF-8")
or
Sys.setlocale("LC_ALL","English")
before calling install_github().
I am seeing the below error when deploying devstack (openstack) on ubuntu:
E: Unable to locate package libvirt-clients
E: Unable to locate package libvirt-daemon-system
Any clues pls ?
I have this problem too and i use ubuntu trusty
according to this commit:
https://github.com/openstack-dev/devstack/commit/03fbc0d71bf4ee85820999ef1324dc319ef9d926?diff=split
they changed the repo packages 5 days ago and just for ubuntu xenial its the same as before : "install_package libvirt-bin libvirt-dev"
but other distros: "install_package libvirt-clients libvirt-daemon-system libvirt-dev"
I think we could better edit the file manually until better changes take place.
You're probably trying to install Devstack it on an unsupported version of Linux. Try Ubuntu 16.0.4 (worked for my today without a single problem) or the one that the installation guide says is supported.
Try sudo apt install qemu qemu-kvm virt-manager for more information check this out on github.
I need to install plotly package for R(3.3.1) in a Redhat server 5.11. It requires curl to be installed first. I downloaded the package from https://cran.r-project.org/web/packages/curl/index.html.
When I try to install the package, it gives below error:
version.c: In function 'R_curl_version':
version.c:15: error: 'curl_version_info_data' has no member named 'libssh_version'
version.c:15: error: 'curl_version_info_data' has no member named 'libssh_version'
make: *** [version.o] Error 1
ERROR: compilation failed for package 'curl'
Has anyone had the same issue before?
Thanks in advance for any suggestion.
You need to install the development version of the curl library before installing the package. Try yum install curl-devel.
One note though - whenever you run into a similar error it is typically because a development version of a library is not installed on your redhat system.
Thanks Jim for your reply.
I found the solution is to use a lower version curl package which has not included the definition for "libssh_version" in the file version.c, e.g. curl_0.9.6.tar.gz with the command:
sudo R CMD INSTALL curl_0.9.6.tar.gz
I've also tried "yum install curl-devel", but it shows the message:
This system is receiving updates from RHN Classic or RHN Satellite.
Setting up Install Process
Package curl-devel-7.15.5-17.el5_9.x86_64 already installed and latest version
Package curl-devel-7.15.5-17.el5_9.i386 already installed and latest version
Nothing to do
I'm trying to install the companion R package for a Coursera course, with the following commands:
library(devtools)
install_github("StatsWithR/statsr")
Error in curl::curl_fetch_disk(url, x$path, handle = handle) :
Couldn't resolve host name
Bet the error is due to the firewall, because at home (where I have no firewall, but exactly the same versions of R and RStudio) I can install flawlessly. Is it possible to fix it? Otherwise, since I've been able to download the package from Github on my pc, how do I install the package manually?
Please change you DNS to public one.
You can try Google DNS (8.8.8.8 and 8.8.4.4) .
It worked fine for me.
Click here to see how to set public DNS
to solve this problem you have to install these packages which worked for me.
install.packages("devtools")
install.packages("dplyr")
install.packages("rmarkdown")
install.packages("ggplot2")
install.packages("broom")
install.packages("gridExtra")
install.packages("shiny")
install.packages("cubature")
library(devtools)
install_github("StatsWithR/statsr")
or use this
install.packages(data.table)
devtools::install_github("arunsrinivasan/cran.stats")
you can try to install Rtools first and then run the commands.
https://cran.r-project.org/bin/windows/Rtools/