Python package install error
I find that the phython package is not installed correctly. The sub-package corsika.io
is not installed by the setup.py
.
To fix this, we can replace packages=["corsika"]
to packages=["corsika", "corsika.io"]
in python/setup.py:33
. We can also use setuptools.find_packages
method and write packages=find_packages()
.