Installing SymCalc for C++
Not here for C++? You can choose another language
Before using SymCalc, we'll have to install it. Here's how you can do it.
First, make sure you have make installed:
make -v
Now, download SymCalc's latest source code through either download it with your browser, GitHub or using terminal:
Through the console:
wget https://symcalc.site/cpp/source_latest.zip
unzip source_latest.zip; cd symcalc_source
Or with GitHub:
git clone https://github.com/symcalc/symcalc-cpp; cd symcalc-cpp
And now we can compile SymCalc with
make
And install it:
make install
Or install to a specific location with:
make install PREFIX=/path/to/install
Now, you can start your journey with SymCalc, view the examples, or read the documentation to get a deep understanding of SymCalc!
SymCalc is licensed under the Apache 2.0 license. You can read more on the about page.