Versions Compared

Key

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

Table of Contents
maxLevel3

Requirements

UIP Plugin

You may already have the UIP plugin installed if you went through the VSCode Plugin tutorial. If not, open Visual Studio Code's extension marketplace and download the UIP plugin. 

Sample Extension

In subsequent documents, the debugging functionality will be demonstrated using a sample extension. The extension is contrived, but it is sufficient to demonstrate the major capabilities.

...

View file
nameDebuggingDemo.zip
height250

Universal Extension Bundle (v1.2.0)

As mentioned in the previous page, the debugging functionality makes use of the same Universal Extension Base Class Components that are used by the Agent/Controller.

...

Go ahead and download the universal_extension_bundle_1.2.0.zip file from the customer portal and save it in a known location. It will be used in subsequent pages.

debugpy PIP module

The debugpy module is required for VSCode's Python debugger (client) to connect to the Extension Python process (server). 

The plugin has built-in prompts and logic to install this pip module automatically. Nothing needs to be done right now. 

< Previous     Next >