srirampc commented on issue #30: URL: https://github.com/apache/airavata-cerebrum/issues/30#issuecomment-4694207683
@girip i am not able to reproduce, but I am guessing that this might be a version issue. I tested only with python version 3.10 with setuptools version 69.5.1. I noticed that you are using version 3.12. I now tested with 3.12 with setuptools version 82.0,1; it works. Can you check your setup tools version as below ? ```sh $ python Python 3.12.13 | packaged by conda-forge | (main, Mar 5 2026, 16:50:00) [GCC 14.3.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import setuptools >>> setuptools.__version__ '82.0.1' >>> ``` When I search in internet, this seem to be due to difference in `pkgutil` between 3.10 and 3.12. One solution I found is to upgrade the setuptools as below, because it seems that the later version of setuptools fixed this.: ```sh pip install --upgrade setuptools ``` Another solution is to create a 3.10 virtual environment to test: ```sh conda create -n atest python=3.10 pip conda activate atest pip install airvata-cerebrum ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
