I'm trying to install moderngl using pip. Of course,
python -m pip install moderngl
It failed to build wheels for moderngl and one of its dependencies, glcontext. In both cases, it gave me the same error message:
error: --plat-name must be one of ('win32', 'win-amd64', 'win-arm32', 'win-arm64')
I am certainly, certainly running a 64-bit AMD processor on a Windows machine. How do I make sure pip/pyproject.toml/whatever knows this? With the double-hyphen, I'd assume this is a CLI argument
python -m pip install moderngl --plat-name 'win-amd64'
but I want to double check and not break things. Is this the safe choice? Or am I way off base? Is there some boilerplate thing I needed to do between installing pip and using it? Either way, what happens if I change the --plat-name argument?