Pystemmer 1.0.1 installation problem in Linux

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

    Pystemmer 1.0.1 installation problem in Linux

    Dear all,

    I am a newbie to Python community. For my project, I tried to install
    Pystemmer 1.0.1 (http://snowball.tartarus.org/wrappers/
    PyStemmer-1.0.1.tar.gz) on my linux ubuntu 7.10 machine but
    unsuccessful. It produced the following error:

    running install
    running build
    running build_ext
    building 'Stemmer' extension
    gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O2 -Wall -Wstrict-
    prototypes -fPIC -Isrc -Ilibstemmer_c/include -I/usr/include/python2.5
    -c libstemmer_c/src_c/stem_ISO_8859_1 _danish.c -o build/temp.linux-
    i686-2.5/libstemmer_c/src_c/stem_ISO_8859_1 _danish.o
    In file included from /usr/lib/gcc/i486-linux-gnu/4.1.3/include/
    syslimits.h:7,
    from /usr/lib/gcc/i486-linux-gnu/4.1.3/include/
    limits.h:11,
    from libstemmer_c/src_c/../runtime/header.h:2,
    from libstemmer_c/src_c/stem_ISO_8859_1 _danish.c:4:
    /usr/lib/gcc/i486-linux-gnu/4.1.3/include/limits.h:122:61 : error:
    limits.h: No such file or directory
    error: command 'gcc' failed with exit status 1

    Did anyone experience this before?

    Any comment/suggestion is highly appreciated.

    Thank you.

    Best regards,

    Supheakmungkol
  • Miki

    #2
    Re: Pystemmer 1.0.1 installation problem in Linux

    Hello Supheakmungkol,
    I am a newbie to Python community. For my project, I tried to install
    Pystemmer 1.0.1 (http://snowball.tartarus.org/wrappers/
    PyStemmer-1.0.1.tar.gz) on my linux ubuntu 7.10 machine but
    unsuccessful. It produced the following error:
    >
    running install
    running build
    running build_ext
    building 'Stemmer' extension
    gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O2 -Wall -Wstrict-
    prototypes -fPIC -Isrc -Ilibstemmer_c/include -I/usr/include/python2.5
    -c libstemmer_c/src_c/stem_ISO_8859_1 _danish.c -o build/temp.linux-
    i686-2.5/libstemmer_c/src_c/stem_ISO_8859_1 _danish.o
    In file included from /usr/lib/gcc/i486-linux-gnu/4.1.3/include/
    syslimits.h:7,
                     from /usr/lib/gcc/i486-linux-gnu/4.1.3/include/
    limits.h:11,
                     from libstemmer_c/src_c/../runtime/header.h:2,
                     from libstemmer_c/src_c/stem_ISO_8859_1 _danish.c:4:
    /usr/lib/gcc/i486-linux-gnu/4.1.3/include/limits.h:122:61 : error:
    limits.h: No such file or directory
    error: command 'gcc' failed with exit status 1
    >
    Did anyone experience this before?
    Nope, compiles out of the box for me on 7.1 (IIRC easy_install worked
    for it as well).
    Any comment/suggestion is highly appreciated.
    Do you have limits.h on your system?
    Did you install the python2.5-dev package?

    HTH,
    --
    Miki <miki.tebeka@gm ail.com>
    If it won't be simple, it simply won't be. [Hire me, source code]

    Comment

    • Jason Scheirer

      #3
      Re: Pystemmer 1.0.1 installation problem in Linux

      On Mar 27, 8:40 am, mungkol <supheakmungkol .sa...@gmail.co mwrote:
      Dear all,
      >
      I am a newbie to Python community. For my project, I tried to install
      Pystemmer 1.0.1 (http://snowball.tartarus.org/wrappers/
      PyStemmer-1.0.1.tar.gz) on my linux ubuntu 7.10 machine but
      unsuccessful. It produced the following error:
      >
      running install
      running build
      running build_ext
      building 'Stemmer' extension
      gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O2 -Wall -Wstrict-
      prototypes -fPIC -Isrc -Ilibstemmer_c/include -I/usr/include/python2.5
      -c libstemmer_c/src_c/stem_ISO_8859_1 _danish.c -o build/temp.linux-
      i686-2.5/libstemmer_c/src_c/stem_ISO_8859_1 _danish.o
      In file included from /usr/lib/gcc/i486-linux-gnu/4.1.3/include/
      syslimits.h:7,
      from /usr/lib/gcc/i486-linux-gnu/4.1.3/include/
      limits.h:11,
      from libstemmer_c/src_c/../runtime/header.h:2,
      from libstemmer_c/src_c/stem_ISO_8859_1 _danish.c:4:
      /usr/lib/gcc/i486-linux-gnu/4.1.3/include/limits.h:122:61 : error:
      limits.h: No such file or directory
      error: command 'gcc' failed with exit status 1
      >
      Did anyone experience this before?
      >
      Any comment/suggestion is highly appreciated.
      >
      Thank you.
      >
      Best regards,
      >
      Supheakmungkol
      This is a system configuration issue, not a Python issue: you seem to
      be missing a header file. First, make sure it exists ( /usr/lib/gcc/
      i486-linux-gnu/4.1.3/include/limits.h ) and that you have permission
      to read it. If it's there, just sudo chmod a+r it and see if that
      helps. Also try installing Ubuntu's standard essential build tools
      ( sudo apt-get update && sudo apt-get install build-essential ) and
      see if that helps

      Comment

      • Praveena Boppudi (c)

        #4
        How to take snap shot of the of project screen in Python

        Hi,

        Can anyone help me out?

        Thanks,
        Praveena.

        Comment

        • Gabriel Genellina

          #5
          Re: How to take snap shot of the of project screen in Python

          En Thu, 27 Mar 2008 15:24:05 -0300, Praveena Boppudi (c)
          <pboppudi@vmwar e.comescribió:
          Can anyone help me out?
          What is "the project screen"?
          Do you want your development session using any IDE? Your running program?
          What platform? OS? Console or graphical application?
          Why using Python?

          --
          Gabriel Genellina

          Comment

          • Damjan

            #6
            Re: Pystemmer 1.0.1 installation problem in Linux

            mungkol wrote:
            Dear all,
            >
            I am a newbie to Python community. For my project, I tried to install
            Pystemmer 1.0.1 (http://snowball.tartarus.org/wrappers/
            PyStemmer-1.0.1.tar.gz) on my linux ubuntu 7.10 machine but
            unsuccessful. It produced the following error:
            you need to install the "build-essential" pacakge group on Ubuntu so that
            you can compile programs.

            apt-get install build-essential
            limits.h: No such file or directory
            This is probably /usr/include/linux/limits.h part of the kernel headers.


            --
            damjan

            Comment

            • Ben Finney

              #7
              Re: How to take snap shot of the of project screen in Python

              "Praveena Boppudi (c)" <pboppudi@vmwar e.comwrites:
              Can anyone help me out?
              Probably, but your chances improve by starting a *new* thread to
              discuss your new question, instead of replying to an existing thread.

              --
              \ "Pinky, are you pondering what I'm pondering?" "I think so, |
              `\ Brain, but Zero Mostel times anything will still give you Zero |
              _o__) Mostel." -- _Pinky and The Brain_ |
              Ben Finney

              Comment

              • mungkol

                #8
                Re: Pystemmer 1.0.1 installation problem in Linux

                On Mar 28, 6:06 am, Damjan <gdam...@gmail. comwrote:
                mungkol wrote:
                Dear all,
                >
                I am a newbie to Python community. For my project, I tried to install
                Pystemmer 1.0.1 (http://snowball.tartarus.org/wrappers/
                PyStemmer-1.0.1.tar.gz) on my linux ubuntu 7.10 machine but
                unsuccessful. It produced the following error:
                >
                you need to install the "build-essential" pacakge group on Ubuntu so that
                you can compile programs.
                >
                apt-get install build-essential
                >
                limits.h: No such file or directory
                >
                This is probably /usr/include/linux/limits.h part of the kernel headers.
                >
                --
                damjan
                Dear all,

                Thank you so much. It works out when I install the "build-essential"
                package as suggested.

                I appreciate your help very much.

                Regards,

                Supheakmungkol

                Comment

                Working...