Introduction of SageMath

Wayne Peng

National Normal Taiwan University

Installation

        %%{init: {'theme': 'dark', 'themeVariables': { 'darkMode': true }}}%%
        flowchart TD
          A[Start] --> OS{OS};
          OS --> Win[Windows];
          OS --> Linux;
          Linux --> apt[sudo apt install sagemath sagemath-jupyter sagemath-doc-en]
          OS --> MacOS;
          MacOS --> binary[Download]
          MacOS --> Uni
          Win --> WSL[Windows subsystem for Linux];
          WSL --> Linux;
          Linux --> Uni[Universal method];
          Uni --> Development[Do you want to do SageMath Development?];
          Development -- Yes --> Git[Instruction]
          Development -- No -->  TwoMethod[Choose conda or source code]
          TwoMethod --> Conda
          TwoMethod --> SourceCode[Install from source code]
          click binary "https://github.com/3-manifolds/Sage_macOS/releases" "This is a tooltip for a link"
          click WSL "https://docs.microsoft.com/en-us/windows/wsl/install-win10" "This is a tooltip for a link"
          click Git "https://doc.sagemath.org/html/en/developer/walkthrough.html#chapter-walkthrough" "This is a tooltip for a link"
          click Conda "https://doc.sagemath.org/html/en/installation/conda.html#sec-installation-conda" "This is a tooltip for a link"
          click SourceCode "https://doc.sagemath.org/html/en/installation/source.html#sec-installation-from-sources"
      

Thank you