c:ドライブのユーザーフォルダー(自分の名前やメールアドレスの一部)に
新規フォルダを作る(jupyter_notebook等)
次にコマンドプロンプトから
>cd jupyter_notebook
>jupyter notebook
と入力する
c:ドライブのユーザーフォルダー(自分の名前やメールアドレスの一部)に
新規フォルダを作る(jupyter_notebook等)
次にコマンドプロンプトから
>cd jupyter_notebook
>jupyter notebook
と入力する
JupyterのNewからPython3を選択
1 2 3 |
import zipfile with zipfile.ZipFile("スクレイピング.zip","r") as zip_ref: zip_ref.extractall("") |