bgatessucks
bgatessucks
Using the standard python which comes with Fedora (not anaconda) and PJLink versrion 1.0.3: Because of #5 I changed (3 instances) in `~/.Mathematica/Paclets/Repository/PJLink-1.0.3/PJLink/MathLinkEnvironment.py` `os.path.join(root, "SystemFiles", ...)` to `os.path.join(root, "11.3", "SystemFiles",...
Not there yet with 1.0.4: I have several versions of Mathematica installed at `/opt/Wolfram/Mathematica/ver` with `ver` in ```text 10.4.1 11.0.1 11.1 11.1.1 11.2 11.3 7.0.1 8.0.4 9.0.1 ``` and it...
Progress, it's just g++ now, with `Env.INSTALLATION_DIRECTORY = "/opt/Wolfram/Mathematica/11.3"`: ```text running build_ext building 'PJLinkNativeLibrary' extension creating build creating build/temp.linux-x86_64-3.6 gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Werror=format-security...
`ls /opt/Wolfram/Mathematica/11.3/SystemFiles/Links/MathLink/DeveloperKit/Linux-x86-64/CompilerAdditions` gives: ```text libML32i3.a libML32i3.so libML32i4.a libML32i4.so libML64i3.a libML64i3.so libML64i4.a libML64i4.so MathLink.cmake mathlink.h MathLink-release.cmake mcc mprep ```
Progress but not there yet: ```python Env.INSTALLATION_DIRECTORY = "/opt/Wolfram/Mathematica/11.3" Env.MATHLINK_LIBRARY_NAME = "ML64i4" ``` ```text ImportError Traceback (most recent call last) in () ----> 1 ker = SubprocessKernel() 2 def MEval...