...
Note: Well-known variables for Perl and CCS scripting are listed in the topic Scripting Well-Known Variables (Perl, Python, and CCS).
...
Perl scripts use a script header similar to a CCS script, contained within a well-known comment block. The script header block influences a number of runtime behaviors, including:
...
Note: Well-known variables for Python scripting are listed in the topic Scripting Well-Known Variables (Perl, Python, and CCS).
...
Python scripts use a script header similar to a CCS script, contained within a well-known comment block.
...
Platforms supporting a local sandbox automatically perform the necessary setup and configuration steps; platforms that need a remote sandbox require a manual setup and configuration process. The topic Setting up a Remote Sandbox describes remote sandbox setup and configuration.
...
You can run Python custom scripts under Python 3. To install custom Python modules, first install pip into the sandbox:
#wget #wget https://bootstrap.pypa.io/3.4/get-pip.py
#python3 get-pip.py
#python3
You can correct the URL to get-pip.py
to the apropriate one from bootstrap.pypa.io
.
After that, use the standard pip utility:
...