-
Notifications
You must be signed in to change notification settings - Fork 271
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem installing R packages that depends from OpenSSL library in rocker/rstudio #124
Comments
Try this
or you could install the git2r .deb binary from my ad-hoc PPA on launchpad. |
Thanks, I've also just pushed a fix for this. (Due to some apt-pinning the Also, I know the rocker/hadleyverse image is a deal heavier than On Mon, May 11, 2015 at 1:29 PM Dirk Eddelbuettel notifications@github.com
|
The installation of the Is this the preferred method of solving unmet dependencies in |
We would prefer to reply on just one flavor, but sometimes our hands are tied. I'd consider the fix you had to do as "temporary" but it all depends... The (upstream Debian) package repository changes all the time as well so these things can be a tad fluid. |
Thanks! |
As this was open for a few days: In the meantime I had two nightlies fail (following a string of seven successful builds) which was followed by a so-far-unbroken run of five working builds. So as I indicated: there can be errors if you automate things. |
Thanks.. apt-get install libssl-dev/unstable works for me. |
The problem now happens with the
I install it as a dependency of the |
Please install from the 'unstable' repos for all apt-get stuff for now: Also note that libgdal-dev is available on the rocker/ropensci image (which On Tue, Jun 2, 2015 at 12:37 PM Guilherme Gall notifications@github.com
|
Installing from unstable seems to work and I was able to install and load the |
I had the same error, but for me just installing |
Thank you very much for your comment, Gene Leynes! (The only receipt that helped me to solve same problem). |
How to fix? I got errors from apt-get install libssl-dev/unstable from apt-get install -t unstable libgdal-dev |
Did you run |
I had some problem with packages. Fixed them. Thank you! |
@Houd1ny May I know, what did you do to fix it? I am getting the same error |
@jwdkesel You are abusing a help forum for a completely different project. Please subscribe to the r-sig-debian mailing list (so that you can post) and post your question there. Thank you. I will delete your post as it bears no relation to what either the Rocker project is about, besides being lost in some Debian configuration issue -- for this thread is not the right forum. |
@cboettig Shall we close (and maybe lock?) this issue? It is from May of last year, and all versions etc have increased. The general trick of pinning still applies, but I think we also explain that somewhere else. |
Sure On Wed, Sep 7, 2016, 4:28 AM Dirk Eddelbuettel notifications@github.com
|
This isn't a yum-based system so you're in the wrong forum. |
ubuntu 18.04 LTS
|
I know this thread is closed. However, I still have the same errors as people who have commented above, even with the most up to date versions of rocker/rstudio and apt-get. I'm using Ubuntu 18.04 on a cloud server. I also got the errors from apt-get install libssl-dev/unstable from apt-get install -t unstable libgdal-dev I will be really glad if someone can provide further information on how to solve this for the rocker/rstudio image Thanks a lot! |
@davisidarta please run The error is telling you to please do not add a HTH |
Hi Guys,
|
For version of RStudio 1.2.5001 just install: sudo apt-get install libssl-dev |
This works for me |
I'm using the
rocker/rstudio
image to generate isolated containers for my RStudio Server users. Almost everything works like a charm. Thank you for your time putting together this image.The only problem I had was installing some R packages that depends from OpenSSL library. Like the
devtools
package, for example. Installing from RStudio or R I get the following messages:When I try to install it in a running container, here is what I get:
Other R packages dependencies I was able to install discovering what package provides it and installing it via
apt-get
.libssl-dev
was the only problem for now.Strangely enough the package appears as installed:
# dpkg --get-selections | grep ssl libssl0.9.8 install libssl1.0.0:amd64 install openssl install
Any idea on what might be happening? Thanks in advance.
The text was updated successfully, but these errors were encountered: