Closed drneavin closed 5 months ago
Hi -- my first reaction is that gcc 7.5 is kind of old -- five years, in fact. In our release linux build we use gcc 11.4. Can you upgrade the gcc in your container?
https://askubuntu.com/questions/1192955/how-to-install-g-10-on-ubuntu-18-04 indicates that you might, I hope so.
I just made a small change in the RELEASE_3_19
branch. Can you try to install again with
remotes::install_github("Bioconductor/SparseArray@RELEASE_3_19", force=TRUE)
Let me know how that goes. Thanks
I had this same error today with the following initial software configuration:
I was able to solve it by upgrading gcc to 11.4.0. I haven't tried to install this RELEASE_3_19
target, but the standard BiocManager
install worked once I upgraded gcc.
@drneavin It would be useful if you could confirm that the change I made in the RELEASE_19
branch (commit e960ae904d07f400c923f2e774144f7aaadf528f) solves the problem with your old version of gcc. Thanks!
RELEASE_3_19 works! Thanks for the fast updates! I'm still going to try to update to a newer gcc but good to know that I can get it working with this release and gcc 7.5. Thanks!
Great! Thanks for letting me know. I'll bump the version in RELEASE_3_19
and apply the fix to the devel
branch. Thanks again.
Hello,
I've been trying to install SparseArray since it is a dependency for other packages I require but I'm having issues installing it. I've tried installing with BiocManager:
R --slave -e 'BiocManager::install("SparseArray")'
and from github:R --slave -e 'remotes::install_github("Bioconductor/SparseArray")'
. I'm using R4.4 on an Ubuntu 18.04 system and this is a singularity build. This is the error message I receive:It seems to be an issues with
ExtendableJaggedArray
but I am not familiar enough to parse out the exact issue. Do you have any recommendations on how to resolve this issue?