Opened 7 years ago
Closed 4 years ago
#5556 closed defect (no-action)
a 'make' invocation following one that fails to install "wheel" skips python packages installation
Reported by: | Andrew | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | programming | Keywords: | |
Cc: | Parent Tickets: |
Description
if you run "make" and it fails to install wheel, you might run "make" again, but it skips the step of installing python packages.
Change History (5)
comment:1 by , 7 years ago
comment:2 by , 5 years ago
Status: | new → accepted |
---|
Thanks for raising this Andrew - I agree, make
shouldn't behave like this.
comment:3 by , 5 years ago
A start might be to make make clean
run
rm -rf bin lib lib64 include
. This would then allow you to run make again.
comment:4 by , 5 years ago
We should also ask the question as to whether Make is even the right tool for installing MediaGoblin. Historically I believe it was used because it was a GNU requirement, but I think that's worth reviewing.
comment:5 by , 4 years ago
Resolution: | → no-action-required |
---|---|
Status: | accepted → closed |
Closing this ticket for now. I suspect we'll need to review whether make is still a good choice, but that won't be specifically related to this ticket.
you need to run python $ ./bin/python setup.py develop --upgrade
again