Changes between Version 18 and Version 19 of Python_SIP/Build_Install
- Timestamp:
- May 6, 2009 10:22:09 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Python_SIP/Build_Install
v18 v19 109 109 }}} 110 110 111 '''Step 3: Testing the installation''':112 113 To test the installation, simply run python and import ''pjsua'' module:114 115 {{{116 C:> python117 > import pjsua118 > ^Z119 120 C:>121 }}}122 123 111 124 112 === Microsoft Windows with MinGW === … … 138 126 You need to install Python SDK. 139 127 128 == Testing the installation == 129 130 To test the installation, simply run python and import ''pjsua'' module. 131 132 On Linux/Unix/MacOS X: 133 {{{ 134 $ python 135 > import pjsua 136 > ^Z 137 138 $ 139 }}} 140 141 Similarly on Windows: 142 {{{ 143 C:> python 144 > import pjsua 145 > ^Z 146 147 C:> 148 }}} 149 150