This is a simple MWE including latexalpha2 package. I have Wolfram Engine installed on my PC and added the WolframScript into the path.
\documentclass{article}
\usepackage{latexalpha2}
\usepackage{amsmath}
\begin{document}
\[ \wolfram{Solve[x+1==0,x]} \]
\end{document}
I get the following error:
Package latexalpha2 Error: WolframScript cannot be found, which is required to use latexalpha2. \begin{document}
EDIT
The output is produced correctly but the error remains.

EDIT 2
I tried to produce a 3D plot which took a while to be compile. During complilation I got the following messages before the error shows up
'command' is not recognized as an internal or external command, operable program or batch file.
'rm' is not recognized as an internal or external command, operable program or batch file.

--shell-escape? – Ulrike Fischer Feb 15 '20 at 14:31pdflatex.exe -shell-escape -synctex=1 -interaction=nonstopmode --enable-write18 %.tex– mac Feb 15 '20 at 14:34t need both--shell-escapeand--enable-write18. That is the same option. Can you runwolframscript` on a command line? – Ulrike Fischer Feb 15 '20 at 14:43\immediate\write18{command -v wolframscript; echo $? > latexalpha2_check.tmp}%to check that the command works, but I'm not sure if theecho $?syntax does anything useful if you are not using a unix style shell? – David Carlisle Feb 15 '20 at 14:43command,rmetc if you are using windows cmd shell you probably need to make some edits to the syntax in the write18 calls – David Carlisle Feb 15 '20 at 14:47