Skip to content
Tylar edited this page Jun 3, 2017 · 5 revisions

ESA PyKEP Website

Install Procedure

  1. git clone https://github.com/esa/pykep.git (NOTE: this is NOT the same as the /py/lib/PyKEP/ submodule)
  2. cd pykep
  3. if Ubuntu:
  • sudo apt-get install cmake
  • sudo apt-get install libboost-all-dev
  • sudo apt-get install aptitude
  1. if Fedora:
  • sudo yum install cmake
  • sudo yum install boost
  • sudo yum install boost-devel
  1. mkdir build
  2. cd build/
  3. sudo ccmake ../
  4. Press [c] for configure
  5. enable BUILD_PYKEP
  • navigate to it and hit ENTER so it says ON
  1. Press [c] again
  2. Press [g] to generate a make file

ensure you are still in the build directory

  1. sudo make
  • Grab a coffee. This will take a few minutes to compile.
  1. sudo make install
  2. Move PyKEP to your python2.7/site-packages directory from the default
  • if Fedora/Most Linux distros:sudo cp -r /usr/local/lib/python2.7/site-packages/PyKEP /usr/lib/python2.7/site-packages/

Congratulations! PyKEP is now waiting to be used!