wx Interface: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
Technology (talk | contribs) m (→Requirements) |
||
Line 1: | Line 1: | ||
== Requirements == | == Requirements == | ||
{| | {|border="1" cellpadding="2" cellspacing="1" | ||
|- | |- style=background-color:#F9F9F9; | ||
!OS/distribution | !OS/distribution | ||
!Instructions | !Instructions | ||
|- | |- | ||
|align=center|FreeBSD | |align=center|FreeBSD | ||
|Open a terminal | |Open a terminal and type: | ||
su -c 'pkg_add -r p5-Wx' | su -c 'pkg_add -r p5-Wx' | ||
|- | |||
|align=center|Ubuntu | |||
|First, search for the libgtk package using the package manager. | |||
Open a terminal and type: | |||
apt-cache search libgtk | |||
Then install the latest version with this command: | |||
sudo apt-get install libgtkx-dev | |||
Where 'x' is the version number as found by the 'apt-cache search' command. | |||
Lastly install the Wx cpan module with this command: | |||
sudo cpan Wx | |||
|- | |- | ||
|align=center|Other | |align=center|Other |
Revision as of 18:05, 19 May 2010
Requirements
OS/distribution | Instructions |
---|---|
FreeBSD | Open a terminal and type:
su -c 'pkg_add -r p5-Wx' |
Ubuntu | First, search for the libgtk package using the package manager.
Open a terminal and type: apt-cache search libgtk Then install the latest version with this command: sudo apt-get install libgtkx-dev Where 'x' is the version number as found by the 'apt-cache search' command. Lastly install the Wx cpan module with this command: sudo cpan Wx |
Other | Open a terminal, and type:
cpan Wx |