When running the myFirstRCnetwork example the following error occurs:
PS C:\Users\name\myFirstRCnetwork> python .\myFirstRCnetwork.py
Succesfully self-tested the Maxima command.
SLiCAP Version matches with the latest release of SLiCAP on github.
Starting
Sarting Maxima client on port 53118
'C:\Program' is not recognized as an internal or external command,
operable program or batch file.
The problem for this is that maxima is installed in C:\Program Files\ and the whitespace is not correctly handled.
To fix this the following line needs to be changed:
|
os.system(self.maxima + ' -s ' + str(self.PORT)) |
By putting quotes around the name the error is solved:
os.system('"' + self.maxima + '" -s ' + str(self.PORT))
When running the myFirstRCnetwork example the following error occurs:
The problem for this is that maxima is installed in
C:\Program Files\and the whitespace is not correctly handled.To fix this the following line needs to be changed:
SLiCAP_python/SLiCAP/SLiCAPpythonMaxima/SLiCAPpythonMaxima.py
Line 39 in 4fedcdb
By putting quotes around the name the error is solved: