takbb
November 6, 2024, 7:20pm
10
Hi @aehrenworth , if you are getting the “Could not connect to the python process” error… and installing python manually, try the steps listed here. Hope it might help…
If you are setting up a manual environment…
To test this out, I installed python 3.9 into a folder as follows:
c:\apps\python39
[image]
and then made sure that python 3.9 was on the path:
[image]
In KNIME I set my python folder manually:
[image]
It complained about numpy and pandas
so in a command prompt I executed the following:
pip install numpy
pip install pandas
[image]
I created a new workflow and on it placed an Empty Table Creator and a Python Script node.
But executing t…