Changes between Version 17 and Version 18 of Python_SIP/Build_Install
- Timestamp:
- May 6, 2009 10:19:59 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Python_SIP/Build_Install
v17 v18 84 84 1. Select either '''Debug''' or '''Release''' from the build configuration 85 85 - 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. 88 88 1. The {{{_pjsua.pyd}}} Python module will be placed in {{{pjsip-apps\lib}}} directory. 89 89 - or in case of debug, it will be {{{_pjsua_d.pyd}}} … … 101 101 C:> cd pjsip-apps\src\python 102 102 C:> python setup-vc.py install 103 running install 104 running build 105 running build_py 106 running install_lib 107 running install_data 108 copying ..\..\lib\_pjsua.pyd -> c:\python24\lib\site-packages 103 109 }}} 110 111 '''Step 3: Testing the installation''': 112 113 To test the installation, simply run python and import ''pjsua'' module: 114 115 {{{ 116 C:> python 117 > import pjsua 118 > ^Z 119 120 C:> 121 }}} 122 104 123 105 124 === Microsoft Windows with MinGW ===