mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-06 12:20:52 +01:00
Add some common tools to docker base (#86993)
I always need to install these 2 tools whenever I use Docker manually to debug build and test issues: * unzip is to extracted the zipped artifacts from PyTorch CI * gdb is to do you know what :) IMO, it makes sense to have them as part of the container image Pull Request resolved: https://github.com/pytorch/pytorch/pull/86993 Approved by: https://github.com/ZainRizvi
This commit is contained in:
parent
96aac51717
commit
1655b47a38
|
|
@ -68,7 +68,9 @@ install_ubuntu() {
|
|||
sudo \
|
||||
vim \
|
||||
jq \
|
||||
libtool
|
||||
libtool \
|
||||
unzip \
|
||||
gdb
|
||||
|
||||
# Should resolve issues related to various apt package repository cert issues
|
||||
# see: https://github.com/pytorch/pytorch/issues/65931
|
||||
|
|
@ -126,7 +128,9 @@ install_centos() {
|
|||
opencv-devel \
|
||||
sudo \
|
||||
wget \
|
||||
vim
|
||||
vim \
|
||||
unzip \
|
||||
gdb
|
||||
|
||||
# Cleanup
|
||||
yum clean all
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user