<div dir="ltr"><div>Could the `PyQt5.__init__.py` module be modified to automatically add the PyQt5 folder to the os.environ["PATH"], when the current platform is Windows?</div><div><br></div><div>If I patch it like that, I don't have to manually configure my environment everytime I install the pyqt5 wheel from pip in a new virtual environment.</div><div><br></div><div>Thanks.</div><div><br></div><br><div>"""</div><div><div><font face="monospace, monospace">import os as _os</font></div><div><font face="monospace, monospace">import platform as _platform</font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">if _platform.system() == "Windows":</font></div><div><font face="monospace, monospace">    # on Windows we need to ensure PyQt5 is in the %PATH% for DLLs to be loaded</font></div><div><font face="monospace, monospace">    _pyqt5_dir = _os.path.dirname(__file__)</font></div><div><font face="monospace, monospace">    _env_path = _os.environ.get("PATH", "")</font></div><div><font face="monospace, monospace">    if _pyqt5_dir not in [pth.rstrip(_os.sep) for pth in _env_path.split(_os.pathsep)]:</font></div><div><font face="monospace, monospace">        _os.environ["PATH"] = _os.pathsep.join([_pyqt5_dir, _env_path])</font></div></div><div>"""</div><div class="gmail_extra"><br clear="all"><div><br></div><div class="gmail_signature"><p> 
Cosimo Lupo<br><br></p></div>
</div></div>