How to Fix Python `No such file or directory` Compiler Errors When Installing Packages
A common error that you may receive when installing Python modules is the `No such file or directory` error. This error results from Python trying to call your system compiler during module installation, and – because the paths to your system compiler are often hardcoded into Python itself – not finding the compiler files it needs. This tutorial will provide an example of this error, and the steps to fix it on multiple platforms.