Error AtlasError Documentation and Resolution

pip could not install a local directory because it is not a Python project

Directory '<path>' is not installable. Neither 'pyproject.toml' nor 'setup.py' found.

pip was asked to install a local directory, but the folder does not contain the project metadata files pip needs to treat it as an installable Python package.

Directory is not installablepackage managers
Directory '<path>' is not installable. Neither 'pyproject.toml' nor 'setup.py' found.
  • The command points to the wrong local directory.
  • The target folder is missing both pyproject.toml and setup.py.
  • A repository checkout is incomplete or the Python package lives in a different subdirectory.
  1. Run pip against the actual Python project directory rather than a parent or unrelated folder.
  2. Make sure the project contains a valid pyproject.toml or setup.py file.
  3. If the package lives in a subfolder, change into that directory or pass the correct path explicitly.
pip install
pip directory is not installable: neither pyproject.toml nor setup.py found | Error Atlas