Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Section
Column
width65%
Panel
titleContents of this Page
Table of Contents
maxLevel3
Column
Include Page
Menu cTAKES 4.0 to Include
Menu cTAKES 4.0 to Include

Getting the code

Subversion

Subversion is the default VCS used by cTAKES.

Panel

There is current issue with the development setup where there are _hardcodings_ to the level the project is supposed to exist relative to ~/.m2 folder. That is why it is recommended to checkout/clone 3 levels from M2_HOME. (e.g. ~/projects/apache/ctakes). We will name this folder as CTAKES_DEV_HOME.

Code Block
languagebash
export CTAKES_DEV_HOME=~/projects/ctakes
Code Block
languagebash
cd ${CTAKES_DEV_HOME}
svn checkout https://svn.apache.org/repos/asf/ctakes/trunk
export CTAKES_SRC_HOME=${CTAKES_DEV_HOME}/trunk
cd ${CTAKES_SRC_HOME}

 

Subversion + Git

This is a setup where both svn source exists in the same folder as the git source.

Code Block
languagebash
cd ${CTAKES_SRC_HOME}
git init .
git remote add apache https://github.com/apache/ctakes.git
git fetch apache
git pull apache trunk

 

IDE based installs

These are instructions for installation of cTAKES for developers. With these instructions you can set up your development environment with cTAKES code so you can compile the code and change or extend it. If you simply want to be a user of the software, refer to the cTAKES 4.0 User Install Guide.

...