Open lc-thomas opened 5 years ago
It got fixed when I used distutils.core instead of setuptools in the setup.py. Not sure if this is the solution.
before
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
after
from distutils.core import setup, Extension
Hello, I'm trying to use the noise library from inside docker alpine. Installing noise with pip is okay, but when I try to import it I get this error message :
Any idea on how to fix this ?