Nuitka Warning: 'Did not follow import to unused 'need'', consider using 'opt'
It seems like you're using the Nuitka compiler and received a warning message: 'WARNING: Did not follow import to unused 'need', consider include opt'. This means you imported a module named 'need' but didn't use it in your code. Nuitka suggests using the 'opt' module instead.
To fix this, either remove the import statement for 'need' if it's unnecessary or replace it with the import statement for 'opt' if that's what you intended.
Here's how to include the 'opt' module:
import opt
# Rest of your code
Review your code and decide if the 'need' module is necessary or if 'opt' should be included instead.
原文地址: https://www.cveoy.top/t/topic/fg91 著作权归作者所有。请勿转载和采集!