I have python 3.6 and 3.8 on my machine. I initialize a pipenv with:
pipenv --python 3.8
I do this otherwise by default it initializes with 3.6
This works well. However, whenever I try to install a package (my use case was with aiohttp) I get the following error:
pipenv.patched.notpip._internal.exceptions.UnsupportedPythonVersion: dataclasses requires Python '>=3.6, <3.7' but the running Python is 3.8.0
I get this with:
pipenv install aiohttp
I then tried with a different package (tldextract) and got the same error message.
I can't find other references for this issue online.
Any help would be appreciated.
Thanks!