1
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

GooleColaboratoryでpyファイルを実行する

Last updated at Posted at 2023-05-26

結論

実行したいpyファイルをアップロードしてからpythonコマンドで実行できます。

手順

  1. Colaboratoryの左メニューにあるファイルアイコンをクリックします。
    py実行01.png
  2. 実行したいpyファイルをエクスプローラーなどからドラッグしてファイル構成の部分にドロップします。
    py実行02.png
  3. 確認のダイアログが出た場合は「OK」をクリックします。
  4. ドラッグしたファイルがドロップされていることを確認後、以下のコマンドをColabのセルに記述します。
    !python <実行するpyファイル名>
    
    hello.pyの場合
    py実行03.png
  5. 実行します。
  6. 実行できていることを確認します。
    py実行04.png

注意事項

アップロードしたファイルはランタイムの接続が解除されると削除されてしまいます。アップロードするファイルは必ずバックアップを取っておきましょう。

以上です。

1
4
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
1
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?