You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RStudio fails to start due to missing libssl.so.3 when installed with r-base=4.2 in environment.yml. The issue occurs because rstudio-server for jammy is somehow installed on buildpack:bionic.
Note: This issue might be temporary due to the ongoing transition: #1287
How to reproduce
This environment.yml is what I'm testing with. It's from binder-examples/r-conda, but changed r-base to 4.2.
Thank you for opening your first issue in this project! Engagement like this is essential for open source projects! 🤗
If you haven't done so already, check out Jupyter's Code of Conduct. Also, please try to follow the issue template as it helps other other community members to contribute more effectively.
You can meet the other Jovyans by joining our Discourse forum. There is also an intro thread there where you can stop by and say Hi! 👋
Welcome to the Jupyter community! 🎉
yamaton
changed the title
RStudio fails to start because jammy version is installed on buildpack:bionic
RStudio fails to start because jammy-build is installed in buildpack-deps:bionicJul 8, 2023
Bug description
RStudio fails to start due to missing
libssl.so.3
when installed withr-base=4.2
inenvironment.yml
. The issue occurs becauserstudio-server
forjammy
is somehow installed onbuildpack:bionic
.Note: This issue might be temporary due to the ongoing transition: #1287
How to reproduce
This
environment.yml
is what I'm testing with. It's from binder-examples/r-conda, but changedr-base
to4.2
.Then RStudio fails to start with the error:
From the Terminal within the container, we see the system is
bionic
whilerstudio-server
is forjammy
.Binder links
I suppose
mybinder.org
now usesrepo2docker 2023.06.0
. So the issue is reproduced there.Jupyter+R:
RStudio:
[EDIT] When called with the command-line option
--Repo2Docker.base_image=docker.io/library/buildpack-deps:jammy
, RStudio starts fine.[EDIT2]
apt-cache search libssl3
returns the exit code 0 even when there is no hit. So this line would be erroneous.[EDIT3] My suggestion is to replace it with
ldconfig -p | grep -q libssl3
.[EDIT4] Settled to
apt-cache search libssl3 | grep -q libssl3
and created a PR.The text was updated successfully, but these errors were encountered: