3.12 installation

3.12 installs on a MAC by creating Application/Python 3.12 - But when I try to run command fromIDEL I get import path
Traceback (most recent call last):
File “<pyshell#5>”, line 1, in
import path
ModuleNotFoundError: No module named ‘path’

That has nothing to do with either the new Python version or with IDLE. There is just not any path standard library, so there is no reason to expect import path to mean anything.

If you were trying to import some other code that you wrote, we need to see how you have the project set up.

If you wanted something from the standard library - maybe you were thinking of from pathlib import Path? Or import os.path?

If you wanted to use some third-party code, we need more information about what that code is, how you tried to install it etc.

I was using path as a example - I can not load modules

You will only be able to load modules that actually exist.

What happens if you try import sys, for example?