Hi, You can try to replace the original line from setup.py with: import sys if sys.version_info < (3,10): from distutils.core import setup,Extension else: from setuptools import setup, Extension distutils is deprecated and setuptools should be used insted.
Hi, You can try to replace the original line from setup.py with: import sys if sys.version_info < (3,10): from distutils.core import setup,Extension else: from setuptools import setup, Extension distutils is deprecated and setuptools should be used insted.
DeprecationWarning from python language wrapper module