how to extract 7zip file in colab

Solutions on MaxInterview for how to extract 7zip file in colab by the best coders in the world

showing results for - "how to extract 7zip file in colab"
Antonio
04 Apr 2018
1# If your file is compressed in .tar.7z, then try this
2!apt-get install p7zip-full
3!p7zip -d file_name.tar.7z
4!tar -xvf file_name.tar
5
6# elif if your file is just compressed in .7z, then try this
7!apt-get install p7zip-full
8!p7zip -d file_name.7z
9
10# else if you files is just a normal .zip file, then try this
11!unzip -q file_name.zip
12
13============================== Hope it helped ^_~ ==============================
14
15