- This topic has 3 replies, 3 voices, and was last updated 1 month, 3 weeks ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Home › Forums › FABRIC General Questions and Discussion › List of OS supported
It should be possible via fablib.get_image_names()
https://fabric-fablib.readthedocs.io/en/latest/fablib.html#fabrictestbed_extensions.fablib.fablib.fablib.get_image_names
# List available images (this step is optional)
available_images = fablib.get_image_names()
print(f’Available images are: {available_images}’)
or in the portal create slice view (attached).
Perfect. Thank you so much.