Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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
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.

...