Versions Compared

Key

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

Install component's IDL

Note
In case you haven't done this step already, you must Build and install IDL first.

Create component

Code Block
languagebash
cd ~/workspace
getTemplateForDirectory MODROOT_WS pyHelloComp
cd pyHelloComp/src
mkdir ws
touch ws/__init__.py
touch ws/HelloComponentImpl.py
vim Makefile

...

Compile component

Code Block
languagebash
export INTROOT=~/workspace/introot
export PYTHONPATH=$INTROOT/lib/python/site-packages:/alma/ACS-2021AUG/ACSSW/lib/python/site-packages
make all install

Add component to CDB

...