Task Warrior Install
January 4, 2016 § Leave a comment
I had to reinstall Task Warrior in Ubuntu on AWS. Process below:
>wget https://taskwarrior.org/download/task-2.5.0.tar.gz
>tar xzvf task-2.5.0.tar.gz
>cd task-2.5.0
>cmake -DCMAKE_BUILD_TYPE=release .
>make
>sudo make install
The following dependencies had to be resolved first:
>sudo apt-get install cmake
>sudo apt-get install gnutls-bin
>sudo apt-get install libgnutls-dev
>sudo apt-get install uuid-de
The highest version of task installable from the default source was <2.5 which is the requirement for syncing with an external source.
Leave a comment