I have four different files named: main, vector, entity and physics. I will not post all the code, just the imports, because I think that\'s where the error is. (If you want
Don't name your current python script with the name of some other module you import
Solution: rename your working python script
Example:
medicaltorch.pyfrom medicaltorch import datasets as mt_datasets where medicaltorch is supposed to be an installed moduleThis will fail with the ImportError. Just rename your working python script in 1.