I recently started development with Python 3 and opencv. Since opencv has to compiled manually to get Python 3 support I created a separate development environment using schroot which is pretty helpful to try out building libs without messing up the host system along the process. As long as the build-tools stay inside the chroot'ed shell everything works as expected. But when I start an x11 application like Pycharm inside the chroot environment it gains access to everything (i guess because it's using the x11 session of the host system). How to keep my development environment completely isolated?
- Can I start a second but isolated x11 session just for my IDE?
- Did I miss some configuration options? (i use minimal schroot profile + pts mounted)