Error installing packages with pip install -r requirements.txt #177
Pooja-More15
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I'm encountering an issue while trying to install the dependencies for my Django project using the command pip install -r requirements.txt. Here are the details:
Project Information:
Project: Django-School-Management
Repository: Django-School-Management GitHub
Steps to Reproduce:
Clone the repository: git clone https://github.com/TareqMonwer/Django-School-Management.git
Navigate to the project directory: cd Django-School-Management
Create a virtual environment: python -m venv venv
Activate the virtual environment: venv\Scripts\activate (for Windows) or source venv/bin/activate (for Unix-based systems)
Install the requirements: pip install -r requirements.txt
Error Message:
During the installation process, I encountered the following error:
(venv) PS C:\Programming\Django Proj\Proj8\Django-School-Management> pip install -r requirements.txt
...
Collecting PyYAML==6.0 (from -r requirements.txt (line 107))
Using cached PyYAML-6.0.tar.gz (124 kB)
Installing build dependencies ... done
Getting requirements to build wheel ... error
error: subprocess-exited-with-error
× Getting requirements to build wheel did not run successfully.
│ exit code: 1
╰─> [54 lines of output]
...
Could anyone please help me identify the cause of this issue and suggest potential solutions?
Beta Was this translation helpful? Give feedback.
All reactions