Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
From: Nils Sudmann <sudmann@gm...> - 2010-06-17 03:34:42
Attachments:
Message as HTML
|
Installing PyOpenGL on Windows 7 (x64) is giving me headaches. Searching previous postings on the list reveals that different people have had the same kind of problems, but never all of them at once, as it seems I have: 1. Using easy_install (recommended method) complains that it "Couldn't find a setup script" (as reported by horace grant on may 2). 2. Missing msvcr71.dll as reported by several people when trying to use the executable installer (PyOpenGL-3.0.1.win32.exe). What is next? I'll try downloading the source and "compiling it". Dunno if I need a vc-like compiler for this, but I'm guessing not. The thing is that PyOpenGL-accelerated installer installed just fine. -- If Atheism is a religion, then not collecting stamps is a hobby. |
From: Alejandro Segovia <asegovi@gm...> - 2010-06-17 14:39:25
Attachments:
Message as HTML
|
Hi Nils, On Thu, Jun 17, 2010 at 12:34 AM, Nils Sudmann <sudmann@...> wrote: > Installing PyOpenGL on Windows 7 (x64) is giving me headaches. Searching > previous postings on the list reveals that different people have had the > same kind of problems, but never all of them at once, as it seems I have: > > 1. Using easy_install (recommended method) complains that it "Couldn't find > a setup script" (as reported by horace grant on may 2). I don't know about this one, maybe someone else has some advice? > 2. Missing msvcr71.dll as reported by several people when trying to use the > executable installer (PyOpenGL-3.0.1.win32.exe). > These errors usually show up when you don't have Visual Studio installed and your Windows box is missing the C/C++ runtime. You should be able to fix this either by installing VS or the Visual C++ Redistributable Package. Keep in mind though that what's being reported missing is the C runtime version 7.1, which is very dated (2003). I don't know if the latest C++ runtime includes dll's for that version. > What is next? I'll try downloading the source and "compiling it". Dunno if > I need a vc-like compiler for this, but I'm guessing not. The thing is that > PyOpenGL-accelerated installer installed just fine. > Let us know how it goes. Best regards, Alejandro.- -- Alejandro Segovia Azapian Director, Algorithmia: Visualization & Acceleration http://web.algorithmia.net |
From: Marcelo de Freitas Rigon <arendhil@ig...> - 2010-06-18 01:49:35
Attachments:
Message as HTML
|
Hi Nils, I have a similiar problem here and there are 2 solutions. 1) install VS (don't know which version however) 2) get the package in the site (not via easy_install as i don't know if you change the default compiler) and get mingw32 with g++, put de c:\<mingwdir>\bin in the path, then use: python setup.py installl build --compiler=mingw32 Good luck ^^ Marcelo From: Nils Sudmann Sent: Thursday, June 17, 2010 12:34 AM To: pyopengl-users@... Subject: [PyOpenGL-Users] Install on Windows 7 64 bit. Installing PyOpenGL on Windows 7 (x64) is giving me headaches. Searching previous postings on the list reveals that different people have had the same kind of problems, but never all of them at once, as it seems I have: 1. Using easy_install (recommended method) complains that it "Couldn't find a setup script" (as reported by horace grant on may 2). 2. Missing msvcr71.dll as reported by several people when trying to use the executable installer (PyOpenGL-3.0.1.win32.exe). What is next? I'll try downloading the source and "compiling it". Dunno if I need a vc-like compiler for this, but I'm guessing not. The thing is that PyOpenGL-accelerated installer installed just fine. -- If Atheism is a religion, then not collecting stamps is a hobby. -------------------------------------------------------------------------------- ------------------------------------------------------------------------------ ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the lucky parental unit. See the prize list and enter to win: http://p.sf.net/sfu/thinkgeek-promo -------------------------------------------------------------------------------- _______________________________________________ PyOpenGL Homepage http://pyopengl.sourceforge.net _______________________________________________ PyOpenGL-Users mailing list PyOpenGL-Users@... https://lists.sourceforge.net/lists/listinfo/pyopengl-users |
From: Nils Sudmann <sudmann@gm...> - 2010-06-18 05:33:23
Attachments:
Message as HTML
|
Hi, msvcr71.dll is neither part of Visual Studio 2008 nor 2010 (express). Installed python from source (python setup install) and it worked like a charm. Today's hint: If you plan to write/build python extensions in C/C++ go with VS 2008, VS 2010 is not recognized by setuptools. Thanks for all the help. On Fri, Jun 18, 2010 at 3:44 AM, Marcelo de Freitas Rigon < arendhil@...> wrote: > Hi Nils, > > I have a similiar problem here and there are 2 solutions. > 1) install VS (don't know which version however) > 2) get the package in the site (not via easy_install as i don't know if you > change the default compiler) and get mingw32 with g++, put de > c:\<mingwdir>\bin in the path, then use: > python setup.py installl build --compiler=mingw32 > > Good luck ^^ > Marcelo > > *From:* Nils Sudmann <sudmann@...> > *Sent:* Thursday, June 17, 2010 12:34 AM > *To:* pyopengl-users@... > *Subject:* [PyOpenGL-Users] Install on Windows 7 64 bit. > > Installing PyOpenGL on Windows 7 (x64) is giving me headaches. Searching > previous postings on the list reveals that different people have had the > same kind of problems, but never all of them at once, as it seems I have: > > > 1. Using easy_install (recommended method) complains that it "Couldn't find > a setup script" (as reported by horace grant on may 2). > 2. Missing msvcr71.dll as reported by several people when trying to use the > executable installer (PyOpenGL-3.0.1.win32.exe). > > What is next? I'll try downloading the source and "compiling it". Dunno if > I need a vc-like compiler for this, but I'm guessing not. The thing is that > PyOpenGL-accelerated installer installed just fine. > > > -- > If Atheism is a religion, then not collecting stamps is a hobby. > > ------------------------------ > > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > > ------------------------------ > > _______________________________________________ > PyOpenGL Homepage > http://pyopengl.sourceforge.net > _______________________________________________ > PyOpenGL-Users mailing list > PyOpenGL-Users@... > https://lists.sourceforge.net/lists/listinfo/pyopengl-users > -- If Atheism is a religion, then not collecting stamps is a hobby. |