Common problems and their solutions (hopefully 🤞🏼) #117
jhrcook
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Problem: Unable to install Bioconductor packages because some library can't be found.
Specifically, I had this problem with installing 'XVector' and receiving the following error:
Solution
install.packages("BiocManager")BiocManager::install("biomaRt")If that doesn't work, try uninstalling 'XVector' and then installing it. When I figured out the solution, I had just started a new default library for R (
~/R-4.1/library), so the fresh library may have also played a role.Beta Was this translation helpful? Give feedback.
All reactions