I’ve run into some problems when trying to install Python packages in Unreal (specifically scipy.) When I initially tried “import scipy” I got a ModuleNotFoundError, which didn’t happen when I imported time and os, for example. It seems I needed to install it with pip install, and I ran into tutorials like this video and this Medium post, which are both intended for Windows and which I had trouble adapting to my Mac setup. The script at the end of the Medium post looked promising, but when I configured it to run on project startup I got this error:
“AssertionError: Python not found at '/Users/Shared/Epic Games/UE_5.0/Engine/Binaries/ThirdParty/Python3/Mac/bin/python”
Checking the filepath that it searched, I found that there wasn’t any file called “python” but rather one called “python3”.
I’m not sure where to go from here or what exactly is wrong - please let me know if there’s anything I can do here or if there’s anything obvious I’m missing!