Trying to setup PyCharm on a Window10 PC.
I followed the steps from your wiki, inclusing setting for PYTHONPATH
PYTHONPATH=C:\Programming\Pulse\engine\src\python;C:\Programming\builds\pulse-engine\Innerbuild\src\python
but I am getting the error below
C:\Programming\PythonEnv\python.exe C:/Programming/Pulse/engine/src/python/pulse/howto/HowTo_EngineUse.py
Traceback (most recent call last):
File “C:\Programming\Pulse\engine\src\python\pulse\howto\HowTo_EngineUse.py”, line 12, in
from pulse.engine.PulseEngine import PulseEngine, version, hash
File “C:\Programming\Pulse\engine\src\python\pulse\engine\PulseEngine.py”, line 6, in
import PyPulse
ModuleNotFoundError: No module named ‘PyPulse’
It looks like you built the pyd with python 3.9 and you are using a 3.10 interpreter
I am not sure how well python versions work together, but maybe there is some kind of incompatibility?