'Could not find a version that satisfies the requirement python-dotenv (from versions: none)
I am currently working on MAC and have created a new virtual environment for the project where i want to install the library - python-dotenv but getting below errors. To be noted that the python version on venv is Python 3.8.9. In this venv, i have 3 packages as of now -
pip 21.1.2
setuptools 57.0.0
wheel 0.36.2
Can someone please help with the below errors which i get after running the command pip install python-dotenv?
ERROR: Could not find a version that satisfies the requirement python-dotenv (from versions: none)
ERROR: No matching distribution found for python-dotenv
Solution 1:[1]
Try installing dotenv:
pip install dotenv
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Artikov |
