added python 3.9 startup script for houdini

This commit is contained in:
Jakub Trllo 2022-08-30 13:23:07 +02:00
parent 24d733ecf3
commit e23ed382f8

View file

@ -0,0 +1,10 @@
from openpype.pipeline import install_host
from openpype.hosts.houdini import api
def main():
print("Installing OpenPype ...")
install_host(api)
main()