Bug 2081720
| Summary: | plot3d in terminal opens empty html page | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Vegard Lima <Vegard.Lima> |
| Component: | sagemath | Assignee: | Paulo Andrade <paulo.cesar.pereira.de.andrade> |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 35 | CC: | paulo.cesar.pereira.de.andrade |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | sagemath-9.6-1.fc37 sagemath-9.6-1.fc36 | Doc Type: | --- |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2022-06-07 17:43:14 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
FEDORA-2022-3193745ede has been submitted as an update to Fedora 37. https://bodhi.fedoraproject.org/updates/FEDORA-2022-3193745ede FEDORA-2022-3193745ede has been pushed to the Fedora 37 stable repository. If problem still persists, please make note of it in this bug report. FEDORA-2022-0326bd55bf has been submitted as an update to Fedora 36. https://bodhi.fedoraproject.org/updates/FEDORA-2022-0326bd55bf FEDORA-2022-0326bd55bf has been pushed to the Fedora 36 testing repository. Soon you'll be able to install the update with the following command: `sudo dnf upgrade --enablerepo=updates-testing --advisory=FEDORA-2022-0326bd55bf` You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2022-0326bd55bf See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information on how to test updates. FEDORA-2022-0326bd55bf has been pushed to the Fedora 36 stable repository. If problem still persists, please make note of it in this bug report. |
Description of problem: When running sage in a terminal plot3d does not work. Version-Release number of selected component (if applicable): sagemath-9.4-2.fc35.x86_64 How reproducible: Always. Steps to Reproduce: 1. Open sage in terminal $ sage 2. sage: var('x,y') 3. sage: plot3d(x^2+y^2, (x,-1,1), (y,-1,1)) Actual results: A blank page is opened in the browser. Expected results: A page with a 3d-plot should open in the browser. Additional info: The html-file that is opened in the browser contains the line: <script src="/usr/share/sagemath/threejs-sage/r122/three.min.js"></script> The problem is that three.min.js is actually installed in: /usr/share/sagemath/threejs/build/three.min.js If a create the directory threejs-sage/r122 and make a symbolic link to the three.min.js file there everything works as expected.