Seth Michael Larson

Results 530 comments of Seth Michael Larson

It looks like it's finding VBoxPython, when you installed your SDK did you use Python 3.5 or Python 2.7? You should install it with the Python version you want to...

Thanks for the setup steps. I'll take a look at this later as I don't have Debian 9.3 in front of me.

Well I develop VirtualBox using 3.5 and 3.6 on Windows and Ubuntu so Ubuntu should work properly. I'll install a fresh environment and try it out. :) If you could...

Also: try installing pyvbox with `pip3 install -U --pre pyvbox` to upgrade to the beta version for 5.2.* support. I need to probably tag a non-beta version for 5.2 by...

What does this print out after you install `1.3.0b1` of pyvbox? ```python import virtualbox v = virtualbox.VirtualBox() v.find_machine('MACHINE NAME') ```

So it's finding your VBoxPython3_4m installation it's just erroring out when it tries to import it with this message: ``` dynamic module does not define init function (PyInit_VBoxPython3_4m) ```

Can you try uninstalling your Python 2.7 install of VBoxPython and installing only 3.*?

My guess here is that for some reason the VBoxPython3_*m.so modules don't actually define `PyInit_VBoxPython3_*m()` function, they may only define `PyInit_VBoxPython()`?

Can you run `nm -D /usr/lib/virtualbox/VBoxPython3_*m.so | grep PyInit` on your machine and give me the output?

So it does define it... hm... I'll have to take a look at this more later. Thanks for helping out.