-
Notifications
You must be signed in to change notification settings - Fork 1k
error make initdb
if xz isn't installed
#5872
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This threw me for a loop getting warehouse setup on my new laptop! `make initdb` was silently failing.
@di I feel ok going ahead and merging this; how do you feel? |
I had talked to @ewdurbin elsewhere about moving this step into a container to sidestep this problem entirely. I think he was attempting to do that but probably got sidetracked by more important stuff. |
If this is a small positive step then how about we merge it and then work on the bigger improvement later? |
Sorry I didn't close the loop! Moving it into the docker container was non-trivial. Let's merge this up. Might make sense to look through all remaining local dev tasks and file an issue with a punch list to move them all into containers. This will likely make for a good contribution from someone with more docker-compose experience! |
When moving all development actions to containers in pypi#10803, this step remained outside on the host OS. As `xz-utils` are installed in the `web` image already, use those instead of relying on the host to install them. Refs: pypi#5872 Closes: pypi#5980 Signed-off-by: Mike Fiedler <[email protected]>
When moving all development actions to containers in #10803, this step remained outside on the host OS. As `xz-utils` are installed in the `web` image already, use those instead of relying on the host to install them. Refs: #5872 Closes: #5980 Signed-off-by: Mike Fiedler <[email protected]>
When moving all development actions to containers in pypi#10803, this step remained outside on the host OS. As `xz-utils` are installed in the `web` image already, use those instead of relying on the host to install them. Refs: pypi#5872 Closes: pypi#5980 Signed-off-by: Mike Fiedler <[email protected]>
This threw me for a loop getting warehouse setup on my new laptop!
make initdb
was silently failing to load the dev db assets.