LoginSignup
0
1

More than 1 year has passed since last update.

Colaboratoryにてtar.gzファイルを解凍する

Posted at

なぜかわからないが、Colaboratory 上で素直に tar.gz ファイルを解凍することができなかったので、その際の対応のメモを記しておく。

状況としては Colaboratory から My Drive にマウントしており、回答したいファイルが My Drive 上にあるという状況を考えている。

# まず拡張子をtar.gzからtarに変換する
!mv FILE_PATH/hoge.tar.gz FILE_PATH/hoge.tar

# tar.gz ファイルを解凍する
!tar xvf FILE_PATH/hoge.tar
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1