Skip to content

Instantly share code, notes, and snippets.

@innyso
Created June 15, 2016 00:28
Show Gist options
  • Select an option

  • Save innyso/b89adca8ebf34060663df60dd8b3bba8 to your computer and use it in GitHub Desktop.

Select an option

Save innyso/b89adca8ebf34060663df60dd8b3bba8 to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment