How can I change the Framework path my Python file is referring?
I'm trying to run an 3rd party application with Python. I understand that Monterey has done away with the System installed Python 2.7, however this application was released before Monterey. When I try to run it, I get:
python: posix_spawn: /System/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python: No such file or directory
The programming for the application is looking for the Framework file in /System/Library/Frameworks. However, since Monterey got rid of the system installed Python, Python.framework does not exist in System/Library/Framework. I had to download it on my own, and because of that the framework file only appears in Library/Frameworks.
How can I change the path that Terminal runs when trying to access Python framework through a pre-existing Python application?