Issue with the installation of SimPEG in windows

Python 3.10.9 | packaged by Anaconda, Inc. | (main, Mar 1 2023, 18:18:15) [MSC v.1916 64 bit (AMD64)]
Type “copyright”, “credits” or “license” for more information.

IPython 8.12.0 – An enhanced Interactive Python.

runfile(‘C:/Users/user/Desktop/SimPEG/tle-magnetotelluric_inversion-master/tleMT/MT1D.py’, wdir=‘C:/Users/user/Desktop/SimPEG/tle-magnetotelluric_inversion-master/tleMT’)
Traceback (most recent call last):

File ~\anaconda3\lib\site-packages\spyder_kernels\py3compat.py:356 in compat_exec
exec(code, globals, locals)

File c:\users\user\desktop\simpeg\tle-magnetotelluric_inversion-master\tlemt\mt1d.py:1
from SimPEG import (

ImportError: cannot import name ‘Problem’ from ‘SimPEG’ (C:\Users\user\anaconda3\lib\site-packages\SimPEG_init_.py)

runfile(‘C:/Users/user/Desktop/SimPEG/untitled1.py’, wdir=‘C:/Users/user/Desktop/SimPEG’)
Traceback (most recent call last):

File ~\anaconda3\lib\site-packages\spyder_kernels\py3compat.py:356 in compat_exec
exec(code, globals, locals)

File c:\users\user\desktop\simpeg\untitled1.py:4
from …simulation import BaseSimulation

ImportError: attempted relative import with no known parent package

You seem to be using a script that is referencing an older version of SimpEG. We no longer use Problem. It would also appear that you’re trying to use relative imports within your own script (the from ...simulation line) which are only relevant within a package itself.