Open LongLong2310 opened 3 years ago
from typing import List, Optional ImportError: No module named typing
How can I fix this
if you've never used Python before, I suggest you do more research before using it. Such an error means you haven't installed the module module. To fix this: pip install typing
module
pip install typing
from typing import List, Optional ImportError: No module named typing
How can I fix this