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.

About

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.

These install instructions do not supply knowledge of what the cTAKES components do. That is found in the cTAKES 4.0 Component Use Guide and the pages for the individual components.

Getting the code

Subversion

Subversion is the default VCS used by cTAKES.

Panel
borderColor#969696
bgColor#F6F6F6
titleProject PATH

There is current issue with the development setup where there are hardcodings to the level the project is supposed to exist relative to M2_HOME (e.g. ~/.m2) folder.
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
There is current issue with the development setup where there are hardcodings to the level the project is supposed to exist relative to M2_HOME (e.g. ~/.m2) folder.
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
cd 
Panel
borderColor#969696
bgColor#F6F6F6
titleProject PATH
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 svn checkout https://svn.apache.org/repos/asf/ctakes/trunk
export CTAKES_SRC_HOME=${CTAKES_DEV_HOME}/trunk
cd ${CTAKES_SRC_HOME}

 

Subversion + Git

...

Code Block
Bash
Bash
git checkout trunk
svn update
git checkout .
git pull --rebase 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.

...

Below are instructions for Eclipse and for IntelliJ

...