-
Notifications
You must be signed in to change notification settings - Fork 25
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
[Bug] Unable to install R API through conda or through R #1818
Comments
@Dzhan4 thank you for your note! Our TileDB-SOMA R install is in a little flux until our 1.5.0 release, which is coming. A verified install scenario may be found here: |
Thank you for the quick response! Will keep an eye out for 1.5.0 release. |
@Dzhan4 Are you still having trouble installing r-tiledbsoma with conda? I confirmed that I was unable to install r-tiledbsoma 1.4.3 with R 4.3.1 (because 1.4.3 was only built against R 4.2). However, I was able to install r-tiledbsoma 1.5.0 and the latest (1.7.2) mamba create --dry-run -n test \
--override-channels -c conda-forge -c tiledb \
python=3.12.0 \
r-base=4.3.1 \
r-tiledbsoma=1.4.3
## Could not solve for environment specs
## The following packages are incompatible
## ├─ r-base 4.3.1** is requested and can be installed;
## └─ r-tiledbsoma 1.4.3** is not installable because it requires
## └─ r-base >=4.2,<4.3.0a0 , which conflicts with any installable versions previously reported.
mamba create --dry-run -n test \
--override-channels -c conda-forge -c tiledb \
python=3.12.0 \
r-base=4.3.1 \
r-tiledbsoma=1.5.0
# solves
mamba create --dry-run -n test \
--override-channels -c conda-forge -c tiledb \
python=3.12.0 \
r-base=4.3.1 \
r-tiledbsoma
# installs r-tiledbsoma 1.7.2 |
@Dzhan4 I believe this is resolved -- please let me know if I'm mistaken and I'll happily re-open -- thank you! |
Hello, I'm trying to install tiledbsoma R API to use for cellxgene census.
I have a custom conda environment with R 4.3.1 and Python 3.12.0 and all other dependencies installed except for tiledbsoma. I have already installed tiledb through conda as well. When I try to install either tiledbsoma or cellxgene.census, I get errors when I try to install through conda or through R. Any help would be greatly appreciated!
Errors below:
conda install error:
R install error:
To Reproduce
conda install -c tiledb r-tiledbsoma
In R:
install.packages("tiledbsoma")
Versions (please complete the following information):
The text was updated successfully, but these errors were encountered: