I want to port my application to Ubuntu. I am not an experienced Ubuntu user,
though I do have some redhat experience.
I just downloaded and installed Ubuntu 11.10.
According to http://wiki.wxpython.org/InstallingOnUbuntuOrDebian
there are no wxpython packages for that version.
Do I need to compile from source now? I would rather like to build a .deb
in that case. Will my users need to do that too before installation?
Thanks for any advice.
Antonio
I am very sorry. I forgot to mention that I need 2.9.3 because of WebView.
After some googling I found out that 11.10 came out in october last year.
Does that mean it is too new for the wxPython own APT repository?
Should I install an older version like 11.04 and recommend that to my end users?
Will 11.04 contain the necessary WebKit version?
What if my users use an older Ubuntu, in that case should I create my
own APT repositiry where they can download the newer webkit package that is
required by 2.9.3? Or would that be too complicated?
Sorry, my users have long been waiting on browser features in our application,
so they are on my back now.
Thanks,
Antonio
Op 17-03-12 15:59, evstevemd schreef:
--
Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.
To unsubscribe, send email to wx-users+u...@googlegroups.com
or visit http://groups.google.com/group/wx-users
Thank you.
thank you. I am now trying to compile it myself. I installed a new Ubuntu,
but I keep bumping into dependencies. I solved a few of them, but gstreamer
puzzles me. Is there a list of things wxpython depends on?
The config.log says: no gstreamer-plugins-base installed, but I do have
that on my system.
Any pointers?
Thanks,
Antonio.
Op 17-03-12 17:28, Serge Stakhanov schreef:
> Hello Antonio.
>
> Ubuntu includes stable wxWidgets packages only. 2.9.3 is development release so I am afraid you have to build 2.9.3 release yourself.
>
> 2012/3/17 Antonio Gom�z Soto <antonio.g...@gmail.com <mailto:antonio.g...@gmail.com>>
>
> Op 17-03-12 15:59, evstevemd schreef:
> > Hi,
> >
> > On Mar 17, 12:02 pm, Antonio Gom�z Soto <antonio.gomez.s...@gmail.com <mailto:antonio.gomez.s...@gmail.com>>
> > wrote:
> >> Hello,
> >>
> >> I want to port my application to Ubuntu. I am not an experienced Ubuntu user,
> >> though I do have some redhat experience.
> >>
> >> I just downloaded and installed Ubuntu 11.10.
> >> According tohttp://wiki.wxpython.org/InstallingOnUbuntuOrDebian <http://wiki.wxpython.org/InstallingOnUbuntuOrDebian>
> >> there are no wxpython packages for that version.
> >>
> >> Do I need to compile from source now? I would rather like to build a .deb
> >> in that case. Will my users need to do that too before installation?
> >>
> >> Thanks for any advice.
> >> Antonio
> >
> > There is wxPython that comes with Ubuntu.
> > The best beginners way would be install app that uses wxPython.
> > But using synaptic (Yes it is still my best app than USC) search
> > wxPython should so it!
> >
>
> I am very sorry. I forgot to mention that I need 2.9.3 because of WebView.
> After some googling I found out that 11.10 came out in october last year.
> Does that mean it is too new for the wxPython own APT repository?
> Should I install an older version like 11.04 and recommend that to my end users?
> Will 11.04 contain the necessary WebKit version?
>
> What if my users use an older Ubuntu, in that case should I create my
> own APT repositiry where they can download the newer webkit package that is
> required by 2.9.3? Or would that be too complicated?
>
> Sorry, my users have long been waiting on browser features in our application,
> so they are on my back now.
>
> Thanks,
> Antonio
>
>
> --
> Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.
>
> To unsubscribe, send email to wx-users+u...@googlegroups.com <mailto:wx-users%2Bunsu...@googlegroups.com>
> or visit http://groups.google.com/group/wx-users
Not with Python extension modules.
--
Robin Dunn
Software Craftsman
http://wxPython.org
I think there was a list of requirements posted on the wxPython-users
list of what the poster needed to install for SuSE. It's probably a
similar list for Ubuntu, plus the libwebkitgtk-dev package.
>
> The config.log says: no gstreamer-plugins-base installed, but I do have
> that on my system.
>
Look for development packages for gconf or libgconf or something like
that. The gstreamer development packages seem to have some sort of an
implicit dependency on gconf devel as the gstreamer detection in our
configure fails if it's not installed.
$ sudo apt-get install build-essential
$ sudo apt-get install libgtk2.0-dev
$ sudo apt-get install freeglut3-dev
$ sudo apt-get install libsdl1.2-dev
$ sudo apt-get install libgstreamer-plugins-base0.10-dev
$ sudo apt-get install python2.7-dev
$ wget http://downloads.sourceforge.net/wxpython/wxPython-src-2.9.3.1.tar.bz2
$ tar xjvf wxPython-src-2.9.3.1.tar.bz2
$ cd wxPython-src-2.9.3.1/wxPython
$ ./build-wxpython.py --build_dir=../bld
This worked, I now have a compiled version. Does wxPython have a built-in
method to create a .deb package? Or is it already there somewhere?
Thanks,
Antonio
Op 17-03-12 19:37, Robin Dunn schreef:
There is the debian folder in the root of the wxWidgets source tree that
was used in 2.8 and 2.6 to build .deb packages for both wxWidgets and
wxPython, but it has not been maintained for 2.9 as somebody in the
Ubuntu project (IIRC) said they would take over creation of the packages.