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


Please see information regarding new UMLS dictionary Authentication at cTAKES 4.0.0.1

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.

...

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

Rebase after svn checkin

Code Block
BashBash
git checkout trunk
svn update
git checkout .
git pull --rebase apache trunk


Build

The standard Maven command for building cTAKES is:

...