Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. # apt-get -d install python-lxml
  2. ...
  3. The following packages have unmet dependencies:
  4. python-lxml : Depends: python (< 2.6) but 2.6.6-3+squeeze7 is to be installed
  5. E: Broken packages
  6.  
  7. apt-get -o Dir::Etc::Main=/path/to/precise/apt.conf -d …
  8.  
  9. Dig::State::status "/path/to/precise/status";
  10. APT::Get::Download-Only "true";
  11.  
  12. docker pull debian:stretch-slim
  13. docker run -it debian:stretch-slim bash
  14. mkdir packages && cd packages
  15. PACKAGES="wget unzip"
  16. # Downloads to current directory
  17. apt-get download $(apt-cache depends --recurse --no-recommends --no-suggests
  18. --no-conflicts --no-breaks --no-replaces --no-enhances
  19. --no-pre-depends ${PACKAGES} | grep "^w")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement