import pkg_resources
installed_packages = pkg_resources.working_set
installed_packages_list = sorted(["%s==%s" % (i.key, i.version) for i in installed_packages])
print(installed_packages_list)
pip list
@notebooks create blueness/pip
import pkg_resources
output = []
for module in pkg_resources.working_set:
if "git" in module.module_path:
continue
output += module.key
print(output)
validate in the container. ✅
@plugins help
@plugins list_of_installed
source installed plugins 🚀 ✅
continues.
@openai images generate - \
"flying through the streets of downtown vancouver, from the art gallery, to Davie and Bute" \
openai-$(@@timestamp)