Omni.kit.pipapi not respecting version kwarg

Wondering if I’m missing something or if this is a bug…

omni.kit.pipapi.install("elasticsearch", version="7.16.1") always installs the latest version, 8.2.0 and I need the one I specified.

Hi @kelly.snapka. You are correct. I can reproduce this issue and I will let the dev team know.

As a workaround, you can use:

import omni.kit.pipapi
omni.kit.pipapi.install("elasticsearch==7.16.1")
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.