This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | None of the above answers worked for me, unfortunately. What I ended up doing was to manually inspect the libstdc++.so.6 file. | |
| First, I checked the system file, and it returned nothing on my side: | |
| strings /usr/lib/x86_64-linux-gnu/libstdc++.so.6 | grep GLIBCXX_3.4.30 | |
| Then, I took a look the conda file, and it was there: | |
| strings /path-to-your-conda/envs/your-env-name/lib/libstdc++.so.6 | grep GLIBCXX_3.4.30 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | .libPaths(c("C:/Users/samik/OneDrive/Documents/R_libraries/r431_packages/", .libPaths())) | |
| libpath <- .libPaths()[1] | |
| install.packages(c("BiocManager","pacman","devtools"), lib=libpath) | |
| library(BiocManager) | |
| library(devtools) | |
| withr::with_libpaths(new = libpath,install_github(repo="immunogenomics/presto")) | |
| BiocManager::install("ggplot2", lib=libpath) | |
| withr::with_libpaths(new = libpath,install_github(repo="satijalab/seurat-wrappers")) |