cmbruns / pyopenvr

Unofficial python bindings for Valve's OpenVR virtual reality SDK
BSD 3-Clause "New" or "Revised" License
245 stars 39 forks source link

Latest update of SteamVR triggered error number 105 #76

Open YinuoQ opened 4 years ago

YinuoQ commented 4 years ago

Hi,

When I try to run openvr.VRSystem() with the latest version of SteamVR. I got the following error message:

OpenVRError: The installed SteamVR runtime could not provide API version IVRSystem_021 requested by pyopenvr. You may need to update SteamVR or use an older version of pyopenvr. VRInitError_Init_InterfaceNotFound (error number 105).

Could you please help take a look at it?

I am running Windows with SteamVR (version 1.11.4) and pyopenvr 1.10.3001.

Thank you!

zurgeg commented 4 years ago

Can you please post your code/MREX, had the same problem and did this

  1. pip install --upgrade openvr
  2. Made sure import openvr;print(openvr.__version__) said 1.12.0501 (The latest version)
  3. Made sure vr.init(openvr.VRApplication_Scene) was being called at the VERY BEGINNING of the code, right after import openvr was ran
  4. Tried again

and it worked. Hoped that helped! If your problem was solved, please close this question.