You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Newbie question... Installed webium 1.0.7 on Windows workstation running Python 2.7.9. When trying to run the basic usage example I get error
Traceback (most recent call last):
File "webium.py", line 4, in
from webium.controls.link import Link
File "C:\Users\tiko\PycharmProjects\webium\webium.py", line 4, in
from webium.controls.link import Link
ImportError: No module named controls.link
Don't know what to do...?
The text was updated successfully, but these errors were encountered:
It looks like your issue is related to namespace resolution. Your module has the same name (webium.py) as webium package does. So, your module doesn't see webium's package. In order to resolve this issue in Python you can:
rename your module
add from __future__ import absolute_import to the beginning of your module
Newbie question... Installed webium 1.0.7 on Windows workstation running Python 2.7.9. When trying to run the basic usage example I get error
Traceback (most recent call last):
File "webium.py", line 4, in
from webium.controls.link import Link
File "C:\Users\tiko\PycharmProjects\webium\webium.py", line 4, in
from webium.controls.link import Link
ImportError: No module named controls.link
Don't know what to do...?
The text was updated successfully, but these errors were encountered: