# Windows

# Cygwin - X11 Manager for Windows

[https://www.cygwin.com/](https://www.cygwin.com/)

Fehlermeldung wegen Python3 Inkompatibilität:

```
File "/usr/bin/terminator", line 119 except (KeyError,ValueError), ex:
```

Lösung:

Quelle: [https://askubuntu.com/a/1209775](https://askubuntu.com/a/1209775)

<div data-lang="lang-py s-code-block" id="bkmrk-%C2%A0-sudo-sed-%271s.%21%2Fusr"><div><div><div><div><div><div><div><div> </div></div><div><div>```
<span role="presentation">sudo sed '1s.!/usr/bin/python.!/usr/bin/python2.' /usr/bin/terminator</span>
```

</div></div></div></div></div></div><div></div><div><div></div></div></div></div></div>

# Visual Code

Poblem mit bash Skripten und Zeilenumbruch mit Windows typischen "\\r"

Lösung:

Edit: Jan 3, 2022. As `VSCode` is mentioned several times. Go to settings in VSCode and type `files.eol` in the search field and set to `\n` (Unix format). Note that this changes this for your user or workspace for all files and it may not be what you want. YMMV.

Quelle: [https://stackoverflow.com/a/32973565](https://stackoverflow.com/a/32973565)