CRI ADX  Last Updated: 2024-07-17 10:47 p
Troubleshooting

How to fix if I got an error message "There are no valid Script plugins in the tool" when I execute the Scripts?

To check if your environment has been set up, refer to To set up the environment for execution .

  • Have you installed Python3?
    • For Windows, make sure you are using 64-bit version.
  • For Windows, did you specify the environment variables?
    • If already specified, please log out and retry to apply.
    • Execute where python to check if the environment variable PATH is added.
  • If you used Homebrew to download Python3, make sure you have changed the path information.

I don't know which Python version I'm using.

For Windows, execute python --version from command prompt.
For Mac, execute python3 --version from terminal.
(These commands may vary depending on different environments.)

Cannot specify the object with user variable

Add the following lines to the script:

import cri.atomcraft.project

Succeed if "set_value" is repeatedly specified. Fail if "set_values" is specified once

set_values uses an associative array.
The order of execution may differ from the order in which the parameters are specified.
Therefore, if the order in which the parameters are set is important, do not use set_values to set all parameters at once.
For details, refer to set_values .