PeterZZQ / scDART

GNU General Public License v3.0
10 stars 2 forks source link

Module not found #16

Open sanikadeshmukh3 opened 2 months ago

sanikadeshmukh3 commented 2 months ago

I've seen in previous posts of people who have run into the same problem as I did, but I cloned the most recent version and it still shows the same problem. This is what I see. scDART.utils cannot be found... Screenshot 2024-09-02 at 2 51 55 PM

PeterZZQ commented 2 months ago

Hi, yes this was an issue earlier and we did update the code to fix it. I just cloned the repo and installed scDART again to test the function, but it didn't report any issues. Here is the command:

conda create --name scdart python=3.8
conda activate scdart
git clone https://github.com/PeterZZQ/scDART.git
cd scDART
pip install .

After the installation, I opened python under a random directory and load the scDART and its sub-module

import scDART.utils as utils

And it works. I'm guessing it might be the version issue of python or other packages? You can create a new python environment and tried the process above, please let me know if it still doesn't work.