Skip to content
This repository has been archived by the owner on Jun 21, 2022. It is now read-only.

Latest commit

 

History

History
51 lines (32 loc) · 1.21 KB

INSTALL.md

File metadata and controls

51 lines (32 loc) · 1.21 KB

Read the instructions according to your operating system


Ubuntu

  1. Install Python3:

     sudo apt-get install python3
    

.

  1. Install bare minimum SymPy:

     sudo apt-get install python3-sympy --no-install-recommends
    

.

  1. Install any modern Web Browser with Javascript support.
    Here is a command to install Mozilla Firefox:

     sudo apt-get install firefox
    

.

  1. Donwload zip archive of the project by clicking here and extract it into any directory of your choice.
    Here is the command-line equivalent to do the same:

     cd dir/to/download/into
     wget https://github.com/aneesahmed777/SignalFlowGraph-GainSolver/archive/master.zip
     unzip master.zip
    

    OR If you have Git installed, use it to clone the repository on your local system:

     cd dir/to/clone/into
     git clone https://github.com/aneesahmed777/SignalFlowGraph-GainSolver.git
    

.

  1. Go into the root project diectory SignalFlowGraph-GainSolver.

     cd SignalFlowGraph-GainSolver
    

.

  1. Launch the app by running mainGui.py:

     python3 mainGui.py
    

.


Windows

Under Contruction.