Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

wxPython not found error

I have installed the Python version 2.7.13 and wxPython 2.8.12.1 unicode on windows 10 OS

When I try to run ride.py on the command prompt gets the following error

C:\Users>ride.py
wxPython not found.
You need to install wxPython 2.8.12.1 with unicode support to run RIDE.
wxPython 2.8.12.1 can be downloaded from http://sourceforge.net/projects/wxpython/files/wxPython/2.8.12.1/

Software Installed Pic

like image 773
San Avatar asked Jan 30 '17 14:01

San


People also ask

How do you get wxPython?

wxPython can be installed through apt-get by calling apt-get install python-wxgtk2. 8 or apt-get install python-wxgtk2. 6, depending on which version you want. You may have to call this with root permissions.

How do I download and install wxPython?

Go to the WinPython webpage here to download the 64-bit version of WinPython 3.5. 4.1 — see the pictures below. Install WinPython by launching the .exe file you downloaded in the previous step. The installer will ask you where to put the WinPython folder.

Is wxPython supported by Python?

Python provides wxpython module which allows us to create high functional graphical user interface.


Video Answer


1 Answers

After installing wxPython 2.8.12.1 unicode 32 bit version it resolved the issue

My python version was 64 bit, but seems RobotFramework-ride installed was 32 bit by using "pip install robotframework-ride" hence it was expecting 32 bit version of wxPython.

like image 189
San Avatar answered Oct 23 '22 10:10

San