Install SigmaF
Install via binary archive on Linux
- Download the version that you prefer in release.
- Unzip the binary archive:
- Set the environment variable ~/.profile:
- Refresh profile:
- Test installation using the command showed below:
VERSION=v1.1
sudo mkdir -p /usr/local/lib/sigmaf
sudo tar -xJvf sigmaf-$VERSION.tar.xz -C /usr/local/lib/sigmaf
VERSION=v1.1
export PATH=/usr/local/lib/sigmaf/sigmaf-$VERSION:$PATH
. ~/.profile
WARNING: If you have problems with this installation you can modify the file home/.bashrc by going to the end and inserting the following:
## SigmaF
VERSION=v1.1
export PATH=/usr/local/lib/sigmaf/sigmaf-$VERSION:$PATH
Install via Interpreter of Python
It has been implemented only in REPL for the moment, but you can execute a file with the ' .sf ' extension on it.
To install the REPL you have to do the following steps:
- Clone the repository in your machine.
- Create a virtual enviroment:
- Run the virtual enviroment:
- Linux or Mac
- Windows
cd sigmaF
source venv/bin/activate
cd sigmaF
source /venv/Scripts/activate - Install requirements:
python3 -m venv venv
pip install -r requirements.txt