Error opening Window: GLSL and OpenGL 2.0 required!

I downloaded the recently jMonkeyEngine to start creating my 3D games. But to compile the code I get an error saying that it is necessary to GLSL and OpenGL 2.0 for LWJGL or something. My PC does not support OpenGL 2.0 or shadows I’ve tried dozens of times to update my drivers but there’s no way my PC is OpenGL 1.4. How can I jMonkeyEngine work? I use an older version? Help me!

I use this

    public static void main(String[] args) {
      AppSettings settings = new AppSettings(true);
      settings.setResolution(640,480);
      //this one
      settings.setRenderer(AppSettings.LWJGL_OPENGL1) 
      MyGame app = new MyGame(); 
      app.setSettings(settings);
      app.start();
    }

http://wiki.jmonkeyengine.org/doku.php/jme3:intermediate:appsettings

Also be warned, you wont have much fun without opengl2 at least not with lighitng and stuff.
For looking around the how the engine works and a bit of testing it#s fine.

Oh, this seems to work … I’ll try later thanks!