Versions Compared

Key

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

...

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

Code Block
languagebash
vim $ACS_CDB/MACI/Components/Components.xml

Add the following item:

Code Block
languagebash
titleCDB
<e Name="HelloWorldPython" Code="ws/HelloComponentImpl"
                           Type="IDL:acsws/workshop/HelloComponent:1.0"
                           Container="aragornContainer" ImplLang="py" />


Testing

Create client python file:

...