Changes between Version 5 and Version 6 of Win32Build


Ignore:
Timestamp:
Mar 16, 2012 8:16:55 AM (12 years ago)
Author:
robert-whitley
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Win32Build

    v5 v6  
    2323 
    2424== Install other external packages == 
    25 - Some packages don't come in a friendly .exe file. To install these you will have to use the command terminal. There are two examples below of how to install. (The example installs periodictable using Python 2.6). The first shows what to do if you've  managed to set up the correct environment variables and the version of python been displayed is the correct one. The second example shows how to force the install to use a certain python version. 
     25- Some packages don't come in a friendly .exe file. To install these you will have to use the command terminal. There are two examples below of how to install. (The example installs periodictable using Python 2.6). 
    2626 
    2727 -- Example 1 (Using correct version of Python) 
     
    3232c:\>cd C:\Users\rqh12525\Desktop\Periodic table\periodictable-1.3.0 
    3333 
    34 C:\Users\rqh12525\Desktop\Periodic table\periodictable-1.3.0>python setup.py --install 
     34C:\Users\rqh12525\Desktop\Periodic table\periodictable-1.3.0>python setup.py install 
    3535}}} 
    3636 
    37  -- Example 2 (Forcing correct version of Python) 
     37 -- Example 2 (Forcing to install using the correct version of Python) 
    3838{{{ 
    3939c:\>cd C:\Users\rqh12525\Desktop\Periodic table\periodictable-1.3.0 
    4040 
    41 C:\Users\rqh12525\Desktop\Periodic table\periodictable-1.3.0>c:/Python26/python.exe setup.py --install 
     41C:\Users\rqh12525\Desktop\Periodic table\periodictable-1.3.0>c:/Python26/python.exe setup.py install 
    4242}}} 
    4343