|
|
I can't understand why is the error show up..
my computer : - ubuntu 16.04 LTS
python version - Python 3.6.5 |Anaconda, Inc.| (default, Apr 29 2018, 16:14:56) [GCC 7.2.0] on linux
my problem....
>>> import wx >>> wx.adv.HyperlinkCtrl Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: module 'wx' has no attribute 'adv'
>>> wx.HyperlinkCtrl Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: module 'wx' has no attribute 'HyperlinkCtrl'
* my wx.version()
>>> wx.version() '4.0.3 gtk3 (phoenix) wxWidgets 3.0.5'
Please let me know about my problem....
--
You received this message because you are subscribed to the Google Groups "wxPython-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email].
For more options, visit https://groups.google.com/d/optout.
|
|
try
from wx.lib.agw.hyperlink import HyperLinkCtrl
I can't understand why is the error show up..
my computer : - ubuntu 16.04 LTS
python version - Python 3.6.5 |Anaconda, Inc.| (default, Apr 29 2018, 16:14:56) [GCC 7.2.0] on linux
my problem....
>>> import wx >>> wx.adv.HyperlinkCtrl Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: module 'wx' has no attribute 'adv'
>>> wx.HyperlinkCtrl Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: module 'wx' has no attribute 'HyperlinkCtrl'
* my wx.version()
>>> wx.version() '4.0.3 gtk3 (phoenix) wxWidgets 3.0.5'
Please let me know about my problem....
--
You received this message because you are subscribed to the Google Groups "wxPython-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email].
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "wxPython-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email].
For more options, visit https://groups.google.com/d/optout.
|
|
try
from wx.lib.agw.hyperlink import HyperLinkCtrl
import wx.adv wx.adv.HyperlinkCtrl
Andrea.
I can't understand why is the error show up..
my computer : - ubuntu 16.04 LTS
python version - Python 3.6.5 |Anaconda, Inc.| (default, Apr 29 2018, 16:14:56) [GCC 7.2.0] on linux
my problem....
>>> import wx >>> wx.adv.HyperlinkCtrl Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: module 'wx' has no attribute 'adv'
>>> wx.HyperlinkCtrl Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: module 'wx' has no attribute 'HyperlinkCtrl'
* my wx.version()
>>> wx.version() '4.0.3 gtk3 (phoenix) wxWidgets 3.0.5'
Please let me know about my problem....
--
You received this message because you are subscribed to the Google Groups "wxPython-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email].
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "wxPython-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email].
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "wxPython-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email].
For more options, visit https://groups.google.com/d/optout.
|
|
Thank you for your answers!!.
I try the Matt Newville's reply. And then my program is working now. Thank you 2018년 8월 11일 토요일 오전 12시 9분 50초 UTC+9, [hidden email] 님의 말: I can't understand why is the error show up..
my computer : - ubuntu 16.04 LTS
python version - Python 3.6.5 |Anaconda, Inc.| (default, Apr 29 2018, 16:14:56) [GCC 7.2.0] on linux
my problem....
>>> import wx >>> wx.adv.HyperlinkCtrl Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: module 'wx' has no attribute 'adv'
>>> wx.HyperlinkCtrl Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: module 'wx' has no attribute 'HyperlinkCtrl'
* my wx.version()
>>> wx.version() '4.0.3 gtk3 (phoenix) wxWidgets 3.0.5'
Please let me know about my problem....
--
You received this message because you are subscribed to the Google Groups "wxPython-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email].
For more options, visit https://groups.google.com/d/optout.
|
|