SICMUtils, 3
.
The goal of this post to setup Jupyter Notebook
.
.
1. Read and follow the exact steps of my post titled “SICMUtils
“.
.
2. To install the Jupyter Notebook
software in Ubuntu, use this command:
sudo apt-get install sagemath-jupyter
3. Try to open the SageMath
program.
4. It will open a Jupyter
notebook page.
5. Click the “New” button at the top right corner and then select “SageMath
“.
.
6. Type
1 + 1
onto the input line.
7. Hit the keys shift-enter
to get the output
2
.
8. Input
Integrate(x^3, x)
9. Hit shift-enter
:
NameError: name 'Integrate' is not defined
.
10. Input
from sage.symbolic.integration.integral import * indefinite_integral(x^3, x)
11. Hit shift-enter
:
1/4*x^4
.
12. Input
%display latex
13. Hit shift-enter
.
.
14. Input
indefinite_integral(x^3, x)
15. Hit shift-enter
:
— Me@2022-07-30 12:18:50 PM
.
.
2022.08.01 Monday (c) All rights reserved by ACHK