- On the PDA: Click 'Start' -> 'Settings' -> 'Connections' -> 'Bluetooth'
- On the PDA: Ensure Bluetooth is turned on
- In BlueSoleil:Click 'My Bluetooth' -> 'Security' -> Set to High, Set a Default Passkey and click 'Enable Data Encryption'
- In BlueSoleil: Right-click on the PDA -> Click 'Pair'
- On the PDA: You will be asked to enter the pin code to pair with the computer. Enter the Default Passkey you typed and click Ok
- In BlueSoleil: Right-click on the PDA -> Click 'Connect' --> Click 'Bluetooth Serial Port Service'
- In BlueSoleil: Right-click on the PDA -> Click 'Status...' --> Note the COM port number
- On the PDA: Click 'Start' -> 'Settings' -> 'Connections' -> 'Bluetooth' --> 'Bluetooth Manager'
- On the PDA: Click 'New' -> 'ActiveSync via Bluetooth' -> Select the computer -> Click a serial port -> Click 'Use a secure, encrypted connection' -> Finish
- In ActiveSync: Click 'File' -> 'Connection settings...' -> 'Connect'
The Problem Development and test clusters may be air-gapped so that client data or sensitive software under development is less likely to be leaked. This can cause problems when trying to install libraries, e.g. for Python-based software, especially if the cluster has an old version of a Linux OS installed. The Solution Setup Python's pip on the remote machine On an Internet-enabled machine, download the Wheel file for pip from https://pypi.python.org/pypi/pip , such as pip-9.0.1-py2.py3-none-any.whl. Copy the Wheel file (e.g. pip-9.0.1-py2.py3-none-any.whl) to the remote machine, e.g. using scp: scp pip-9.0.1-py2.py3-none-any.whl user@host:/path On the remote machine: python pip-9.0.1-py2.py3-none-any.whl/pip install --no-index pip-9.0.1-py2.py3-none-any.whl pip --version # this should display the version number if correctly installed Download the required libraries On an Internet-enabled machine, download the library and its d...
Comments