Ver 2.3 install over 2.2?

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

    Ver 2.3 install over 2.2?

    Is it OK to install 2.3 in my python22 folder, thus preserving all the libs
    and packages already installed, or do I have to reinstall all of them, or what?

    Bob Gailer
    bgailer@alum.rp i.edu
    303 442 2625


    ---
    Outgoing mail is certified Virus Free.
    Checked by AVG anti-virus system (http://www.grisoft.com).
    Version: 6.0.500 / Virus Database: 298 - Release Date: 7/10/2003

  • Garth T Kidd

    #2
    Re: Ver 2.3 install over 2.2?

    > You have to reinstall all of them. Actually, you might need to rebuild[color=blue]
    > them, as extension modules need to be recompiled.[/color]

    Make sure you have VC6 installed, else you'll be unable to build extensions
    for Python23. VC7 worked for building Python22 extensions, but no longer
    (and if anyone can explain why, I'd love to know).

    error: Python was built with version 6 of Visual Studio, and
    extensions need to be built with the same version of the
    compiler, but it isn't installed.

    I'm reinstalling 2.2.3 so I can keep developing with Reportlab until I can
    get hold of VC6 or a fix for 2.3.

    Comment

    • Martin v. Löwis

      #3
      Re: Ver 2.3 install over 2.2?

      garth@deadlyblo odyserious.com (Garth T Kidd) writes:
      [color=blue]
      > Make sure you have VC6 installed, else you'll be unable to build extensions
      > for Python23. VC7 worked for building Python22 extensions, but no longer
      > (and if anyone can explain why, I'd love to know).[/color]

      VC7 did not work for building Python22 extensions. You end up linking
      different versions of the CRT, and as soon as you pass FILE* from the
      extension to Python, you get crashes.

      Regards,
      Martin

      Comment

      Working...