Toolset Configuration
# Go inside the directory where CLI is extracted
$ cd veecli
# Use jq to see the Toolset JSON content files
$ cat third_party/runtimes-config.json | jq . | less
$ cat third_party/tools-config.json | jq . | less Python Toolset
Native python Toolset
# Verify python is available in the environment.
$ which python
# Verify the minimum version of pipdeptree available in the environment is 2.3.3 and above
$ pip show pipdeptree
# Install “pipdeptree” using the following command, if not installed
$ sudo pip install pipdeptree==2.3.3
# Verify that python can be used to create virtual environments
$ python -m venv /tmp/python-venv Setup python for Ubuntu (22.04)
Last updated