Installation problem on Windows 98

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Kent Tong

    Installation problem on Windows 98

    Hi all,

    I've installed Python 2.3 using the Windows installer
    downloaded from www.python.org. I'm using Win98. The
    installation process went well without any problem.
    However, double-clicking the "IDLE (Python GUI)" does
    nothing. The cursor changes to a hour-glass for about
    1 second and then nothing happens. The "Python (command
    line)" works.

    Any help? Thanks!
  • R. Hughes

    #2
    Re: Installation problem on Windows 98

    No problems here on two W98 platforms using Python
    versions 2.3.2 and 2.3.3 from www.python.org.
    Suggest you try to reinstall then if you still have problems
    try downloading the W98 installer for 2.3.3 again

    Good Luck.

    "Kent Tong" <kent@cpttm.org .mo> wrote in message
    news:c93e5fda.0 402160226.68899 23b@posting.goo gle.com...[color=blue]
    > Hi all,
    >
    > I've installed Python 2.3 using the Windows installer
    > downloaded from www.python.org. I'm using Win98. The
    > installation process went well without any problem.
    > However, double-clicking the "IDLE (Python GUI)" does
    > nothing. The cursor changes to a hour-glass for about
    > 1 second and then nothing happens. The "Python (command
    > line)" works.
    >
    > Any help? Thanks![/color]


    Comment

    • Thomas Heller

      #3
      Re: Installation problem on Windows 98

      kent@cpttm.org. mo (Kent Tong) writes:
      [color=blue]
      > Hi all,
      >
      > I've installed Python 2.3 using the Windows installer
      > downloaded from www.python.org. I'm using Win98. The
      > installation process went well without any problem.
      > However, double-clicking the "IDLE (Python GUI)" does
      > nothing. The cursor changes to a hour-glass for about
      > 1 second and then nothing happens. The "Python (command
      > line)" works.
      >
      > Any help? Thanks![/color]

      Can you try to disable your firewall software, if you have one.

      Thomas

      Comment

      • Dave K

        #4
        Re: Installation problem on Windows 98

        On 16 Feb 2004 02:26:44 -0800 in comp.lang.pytho n, kent@cpttm.org. mo
        (Kent Tong) wrote:
        [color=blue]
        >Hi all,
        >
        >I've installed Python 2.3 using the Windows installer
        >downloaded from www.python.org. I'm using Win98. The
        >installation process went well without any problem.
        >However, double-clicking the "IDLE (Python GUI)" does
        >nothing. The cursor changes to a hour-glass for about
        >1 second and then nothing happens. The "Python (command
        >line)" works.
        >
        >Any help? Thanks![/color]

        The standard installation should have done this, but it might be worth
        checking - the path in my shortcut is:

        D:\Python23\pyt honw.exe "D:\PYTHON23\Li b\idlelib\idle. pyw"

        Changing the argument to a non-existent file gives me the behaviour
        you mention (a very brief hourglass, followed by nothing). Also, if
        you're running a personal firewall, you could check that pythonw.exe
        isn't blocked (that shouldn't really prevent it starting up AFAIK, but
        worth checking).

        That's about the limit of my technical expertise, I'm afraid, maybe
        another process you're running is interfering, but I wouldn't have a
        clue what it might be.

        Dave

        Comment

        • Kurt B. Kaiser

          #5
          Re: Installation problem on Windows 98

          kent@cpttm.org. mo (Kent Tong) writes:
          [color=blue]
          > I've installed Python 2.3 using the Windows installer downloaded
          > from www.python.org. I'm using Win98. The installation process went
          > well without any problem. However, double-clicking the "IDLE
          > (Python GUI)" does nothing. The cursor changes to a hour-glass for
          > about 1 second and then nothing happens. The "Python (command line)"
          > works.[/color]

          The current Python CVS has improvements which make it easier to track
          down problems when IDLE is having trouble setting itself up. One
          improvement is to have Tk post a dialog describing the error, another
          is better error messages. (These changes were also added to the
          IDLEfork CVS.)

          That isn't much help to you, I'm afraid. To see the error in 2.3.3,
          you will need to start IDLE using a command window.

          Open a command window, then:

          \python23\pytho n.exe -i \python23\lib\i dlelib\idle.py

          and let us know what you see.

          Note that I didn't use pythonw.exe or idle.pyw!

          It is likely a firewall or network setup problem. To run IDLE
          without the subprocess:

          \python23\pytho n.exe \python23\lib\i dlelib\idle.py -n

          but it's much nicer with the subprocess execution server.

          --
          KBK

          Comment

          • Thomas Heller

            #6
            Re: Installation problem on Windows 98

            kbk@shore.net (Kurt B. Kaiser) writes:
            [color=blue]
            > kent@cpttm.org. mo (Kent Tong) writes:
            >[color=green]
            >> I've installed Python 2.3 using the Windows installer downloaded
            >> from www.python.org. I'm using Win98. The installation process went
            >> well without any problem. However, double-clicking the "IDLE
            >> (Python GUI)" does nothing. The cursor changes to a hour-glass for
            >> about 1 second and then nothing happens. The "Python (command line)"
            >> works.[/color]
            >
            > The current Python CVS has improvements which make it easier to track
            > down problems when IDLE is having trouble setting itself up. One
            > improvement is to have Tk post a dialog describing the error, another
            > is better error messages. (These changes were also added to the
            > IDLEfork CVS.)[/color]

            It is getting off-topic, but I still believe that pythonw.exe should be
            improved to show errors in a console window which opens as soon as the
            first output is written to sys.stderr (and sys.stdout also, maybe).

            There is no chance otherwise to complain that tcl/tk can not be found,
            for example.

            And that reminds me: we had the case that a Ruby installation, which
            sets some tcl/tk enviroment variables. Removing the Ruby installation
            did help in that case.

            Thomas

            Comment

            • Neil Hodgson

              #7
              Re: Installation problem on Windows 98

              Thomas Heller:
              [color=blue]
              > It is getting off-topic, but I still believe that pythonw.exe should be
              > improved to show errors in a console window which opens as soon as the
              > first output is written to sys.stderr (and sys.stdout also, maybe).[/color]

              So if it is being redirected or captured by another application, such as,
              say, SciTE, then an extra console window will open up?

              Neil


              Comment

              • Thomas Heller

                #8
                Re: Installation problem on Windows 98

                "Neil Hodgson" <nhodgson@bigpo nd.net.au> writes:
                [color=blue]
                > Thomas Heller:
                >[color=green]
                >> It is getting off-topic, but I still believe that pythonw.exe should be
                >> improved to show errors in a console window which opens as soon as the
                >> first output is written to sys.stderr (and sys.stdout also, maybe).[/color]
                >
                > So if it is being redirected or captured by another application, such as,
                > say, SciTE, then an extra console window will open up?[/color]

                No, that is not the intent. Can this case be detected somehow?

                Thomas

                Comment

                • Neil Hodgson

                  #9
                  Re: Installation problem on Windows 98

                  Thomas Heller:
                  [color=blue]
                  > After thinking it over: why is pythonW.exe used, and not python.exe?
                  > Doesn't xemacs, for example, also use python.exe?[/color]

                  I expect the main reason is to avoid extra console windows.

                  Neil


                  Comment

                  Working...