After downloading the compressed Sage for Linux/64bit, extract the compressed archive, move it to some location (let us say it becomes `/path/to/sagemath` which could mean `~/sagemath` or `/opt/sagemath` or any location you chose), then change to the Sage root folder by running ``` $ cd /path/to/sagemath ``` then run one of the following ``` $ ./sage # for the Sage REPL $ ./sage -n jupyter # for the Jupyter notebook $ ./sage -n sagenb # for the SageNB notebook ``` Or place an alias to `sage` in an appropriate location that is part of your PATH, for example by running ``` $ WHAT=/path/to/sagemath/sage $ WHERE=/usr/local/bin $ sudo ln -s $WHAT $WHERE ``` so that you can start Sage from anywhere using one of ``` $ sage # for the Sage REPL $ sage -n jupyter # for the Jupyter notebook $ sage -n sagenb # for the SageNB notebook ``` (Note: the sagenb notebook will only work with old Python2-based versions of Sage.)
Unless you have a good reason to use an old Python2-based version of Sage I would suggest using a more recent, Python3-based version of Sage, such as SageMath 9.2, and using Jupyter rather than the legacy SageNB notebook which is no longer maintained. -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-devel+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/sage-devel/39aec8e9-124a-49fa-8840-439326362471n%40googlegroups.com.