Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
.reuse/ | H | 27-Feb-2022 | - | 9 | 7 | |
LICENSES/ | H | 03-May-2022 | - | |||
admin/documentation/ | H | 27-Feb-2022 | - | 989 | 665 | |
cmake/ | H | 03-May-2022 | - | 477 | 389 | |
doc/ | H | 03-May-2022 | - | 1,006 | 948 | |
examples/ | H | 27-Feb-2022 | - | |||
icons/ | H | 03-May-2022 | - | |||
po/ | H | 01-Mar-2022 | - | 233,742 | 197,764 | |
src/ | H | 03-May-2022 | - | 88,056 | 73,230 | |
thirdparty/ | H | 03-May-2022 | - | 18,506 | 14,629 | |
.gitignore | H A D | 27-Feb-2022 | 335 | 29 | 23 | |
.gitlab-ci.yml | H A D | 27-Feb-2022 | 252 | 7 | 5 | |
.kateconfig | H A D | 27-Feb-2022 | 178 | 5 | 3 | |
.kde-ci.yml | H A D | 27-Feb-2022 | 804 | 26 | 24 | |
CHANGELOG.md | H A D | 27-Feb-2022 | 5.4 KiB | 101 | 75 | |
CantorConfig.cmake.in | H A D | 27-Feb-2022 | 73 | 4 | 2 | |
DESIGN | H A D | 27-Feb-2022 | 8.1 KiB | 144 | 114 | |
FindCantor.cmake | H A D | 27-Feb-2022 | 733 | 25 | 18 | |
README.md | H A D | 27-Feb-2022 | 1.6 KiB | 45 | 35 | |
org.kde.cantor.appdata.xml | H A D | 27-Feb-2022 | 16.6 KiB | 149 | 148 |
README.md
1## Cantor 2 3Cantor is a KDE Application aimed to provide a nice Interface 4for doing Mathematics and Scientific Computing. It doesn't implement 5its own Computation Logic, but instead is built around different 6Backends. 7 8## Available Backends 9 10- Julia Programming Language: http://julialang.org/ 11- KAlgebra for Calculation and Plotting: http://edu.kde.org/kalgebra/ 12- Lua Programming Language: http://lua.org/ 13- Maxima Computer Algebra System: http://maxima.sourceforge.net/ 14- Octave for Numerical Computation: https://gnu.org/software/octave/ 15- Python 2 Programming Language: http://python.org/ 16- Python 3 Programming Language: http://python.org/ 17- Qalculate Desktop Calculator: http://qalculate.sourceforge.net/ 18- R Project for Statistical Computing: http://r-project.org/ 19- Sage Mathematics Software: http://sagemath.org/ 20- Scilab for Numerical Computation: http://scilab.org/ 21 22## How To Build and Install Cantor 23 24To build and install Cantor, follow the steps below: 25 26``` 27cd cantor 28mkdir build 29cd build 30cmake .. -DCMAKE_INSTALL_PREFIX=/path/to/install -DCMAKE_BUILD_TYPE=RELEASE 31make 32make install or su -c 'make install' 33``` 34 35If `-DCMAKE_INSTALL_PREFIX` is not used, Cantor will be installed in 36default cmake install directory (`/usr/local/` usually). 37Also, setting `CMAKE_INSTALL_PREFIX` to some unstandart location may happens different problems 38with searching Cantor files. So there is a need for passing proper paths for KDE install cmake variables. 39For example, if no one Cantor's backends found after installation, KDE_INSTALL_PLUGINDIR path should 40be specified on cmake configuration step to some location. 41 42To uninstall the project: 43 44`make uninstall` or `su -c 'make uninstall'` 45