Description
The repository setup instructions in both README.md and CONTRIBUTING.md reference a requirements.txt file for dependency installation:
pip install -r requirements.txt
However, the requirements.txt file is not present in the repository root, causing the installation step to fail for new contributors.
To Reproduce
- Clone the repository.
- Navigate to the project root directory.
- Run:
pip install -r requirements.txt
- Observe the error:
ERROR: Could not open requirements file: [Errno 2] No such file or directory: 'requirements.txt'
Expected Behavior
A valid requirements.txt file should exist in the repository root, or the installation instructions should be updated to reflect the correct dependency installation process.
Actual Behavior
The setup instructions reference a file that does not exist, preventing contributors from following the documented installation steps successfully.
Impact
- New contributors cannot complete setup using the documented instructions.
- Creates confusion during onboarding.
- Increases the likelihood of dependency-related setup issues.
Checklist
Additional Context
The issue was observed while following the installation steps provided in both README.md and CONTRIBUTING.md.
Description
The repository setup instructions in both
README.mdandCONTRIBUTING.mdreference arequirements.txtfile for dependency installation:However, the
requirements.txtfile is not present in the repository root, causing the installation step to fail for new contributors.To Reproduce
Expected Behavior
A valid
requirements.txtfile should exist in the repository root, or the installation instructions should be updated to reflect the correct dependency installation process.Actual Behavior
The setup instructions reference a file that does not exist, preventing contributors from following the documented installation steps successfully.
Impact
Checklist
Additional Context
The issue was observed while following the installation steps provided in both
README.mdandCONTRIBUTING.md.