当你遇到“no module named 'anndata'”这个错误时,通常意味着Python解释器在其搜索路径中找不到名为anndata的模块。以下是一些解决这个问题的步骤: 确认Python环境及版本: 首先,确认你使用的Python环境。anndata是一个Python库,确保你正在使用的Python环境是支持该库的版本。通常,anndata库支持Python 3.6及以上版本。
> library(zellkonverter) > library(anndata) > adata <- SCE2AnnData(sce) Error in py_module_import(module, convert = convert) : ModuleNotFoundError: No module named 'anndata' Detailed traceback: File "/home/mathieu/R/x86_64-conda-linux-gnu-library/4.0/reticulate/python/rpytools/loader.py...
My machine has ubuntu 18.4, I run the code with a conda environment. I am using these versions of libraries: scanpy 1.4.5 hdf5 1.10.4 numpy 1.17.4 anndata 0.7rc1 This is an example of code reproducing the problem: import scanpy as sc import numpy as np import anndata import pandas as...