I installed Sage 8.2 with the Windows binary. In a Sage notebook, I executed the following commands:
data = [2, 3, 7, 8, 10, 11] print median(data) print r.quantile(data,.5) r.boxplot(data)
This works in SageMathCell (lines 2 and 3 returning 15/2 and line 4 returning an object that includes a displayed boxplot); however, in Sage 8.2 Notebook on my Windows machine, line 4 returns [1] 2, and the command
r.png()
returns a Python traceback that includes "...\SageMath-8.2.exe is not a valid Win32 application." When I searched on various words, I kept coming upon information from about 6-8 years ago dealing with different headers in the compile phase and the presence or absence of an X11 server. Do I really need to install an X11 server, download the SageMath source, make a variety of compiler choices, and compile myself?