Changes between Version 17 and Version 18 of Python_SIP/Build_Install


Ignore:
Timestamp:
May 6, 2009 10:19:59 AM (15 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Python_SIP/Build_Install

    v17 v18  
    8484 1. Select either '''Debug''' or '''Release''' from the build configuration 
    8585   - Note: the Python module does not support other build configurations. 
    86  1. In Visual Studio, right click '''py_pjsua''' project from the ''Solution Explorer'' panel, and select '''Build''' from the pop-up menu. 
    87    - Note: the ''py_pjsua'' project is not built by default if you build the solution, hence it needs to be built manually by right-clicking and select ''Build'' from the pop-up menu. 
     86 1. In Visual Studio, right click '''python_pjsua''' project from the ''Solution Explorer'' panel, and select '''Build''' from the pop-up menu. 
     87   - Note: the ''python_pjsua'' project is not built by default if you build the solution, hence it needs to be built manually by right-clicking and select ''Build'' from the pop-up menu. 
    8888 1.  The {{{_pjsua.pyd}}} Python module will be placed in {{{pjsip-apps\lib}}} directory. 
    8989   - or in case of debug, it will be {{{_pjsua_d.pyd}}} 
     
    101101 C:> cd pjsip-apps\src\python 
    102102 C:> python setup-vc.py install 
     103running install 
     104running build 
     105running build_py 
     106running install_lib 
     107running install_data 
     108copying ..\..\lib\_pjsua.pyd -> c:\python24\lib\site-packages 
    103109 }}} 
     110 
     111'''Step 3: Testing the installation''': 
     112 
     113To test the installation, simply run python and import ''pjsua'' module: 
     114 
     115{{{ 
     116C:> python 
     117> import pjsua 
     118> ^Z 
     119 
     120C:> 
     121}}} 
     122 
    104123 
    105124=== Microsoft Windows with MinGW ===