iso
6/15/2016 - 12:28 AM

Getting ansible working on babun

Getting ansible working on babun

When using ansible on babun I am getting the following error

 [main] python2.7 16500 child_info_fork::abort: address space needed by '_speedups.dll' (0x4B0000) is already occupied

The error was due to the the _speedups.dll provided in markupsafe python library.

Uninstall the markupsafe (I have to do it manually)

git clone https://github.com/pallets/markupsafe
cd markupsafe
python setup.py install --record files.txt
cat files.txt | xargs rm -rf

To reinstall markupsafe without speedups

cd markupsafe
python setup.py --without-speedups install
Reference