I'm just wondering if anyone can point me to Ubuntu 18.04 installation instructions. The current install on linux is pretty old and isn't working for me. I've tried downloading the source and running it, but I get a "missing module wx" error. I've tried installing python-wxtools and python-wxgtk4.0 with apt but it hasn't resolved the error. I'm not a python expert so I'm not sure where to go next. Thanks!
--
You received this message because you are subscribed to the Google Groups "wikidpad-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email to wikidpad-deve...@googlegroups.com.
To post to this group, send email to wikidpa...@googlegroups.com.
Visit this group at https://groups.google.com/group/wikidpad-devel.
For more options, visit https://groups.google.com/d/optout.
python3 WikidPad.pyTraceback (most recent call last): File "WikidPad.py", line 3, in <module> import WikidPadStarter File "/home/tyler/personal-repo/WikidPad/WikidPadStarter.py", line 101, in <module> import wxModuleNotFoundError: No module named 'wx'
You're running it with python3, are you sure you installed wx for python 3 (e.g. python3-wxgtk4.0)? You might also want to try wx 3.0, I'm not sure the latest stable WikidPad uses 4.0.
I don't think the Ubuntu repositories have the "python3 + wxgtk3.0" combination so you might want to try running it with Python 2.
(I'm not an expert, by the way, but I've been able to run WP 2.2
under Ubuntu 18.04 with python2.7 + wx3.0)
François
python WikidPad.py
Traceback (most recent call last): File "WikidPad.py", line 3, in <module> import WikidPadStarter
File "/home/tyler/personal-repo/WikidPad/WikidPadStarter.py", line 35, in <module> builtins._ = N_NameError: name 'N_' is not defined
What version of WikidPad is this? I don't think you mentioned it.
(WIKIDPAD36) bjorn@bjorn-ThinkPad-T450s:~$ python2Python 2.7.12 (default, Dec 4 2017, 14:50:18)[GCC 5.4.0 20160609] on linux2Type "help", "copyright", "credits" or "license" for more information.>>> import wx
Traceback (most recent call last):
File "<stdin>", line 1, in <module>ImportError: No module named wx>>>[3]+ Stopped python2(WIKIDPAD36) bjorn@bjorn-ThinkPad-T450s:~$ python3Python 3.6.5 | packaged by conda-forge | (default, Apr 6 2018, 13:39:56)[GCC 4.8.2 20140120 (Red Hat 4.8.2-15)] on linuxType "help", "copyright", "credits" or "license" for more information.>>> import wx>>> wx.__version__'4.0.3'>>>