0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

batファイル

Posted at

streamlit

@echo off
REM ネットワークドライブとしてマウント
net use Z: \\LS410D3B6\PrivateDrive\Programming\Python\DevelopingEnv_streamlit

REM ネットワークドライブに移動
cd /d Z:

REM Streamlitアプリケーションを実行
streamlit run myApp.py

REM ネットワークドライブのマウント解除
net use Z: /delete

REM コマンドプロンプトウィンドウを開いたままにする
pause


jupyter

@echo off
REM ネットワークドライブとしてマウント
net use Z: \\LS410D3B6\PrivateDrive\Programming\Python\DevelopingEnv_jupyter

REM ネットワークドライブに移動
cd /d Z:

REM Jupyter Labを起動
jupyter lab

REM ネットワークドライブのマウント解除(この行は実行後に手動でJupyter Labを終了するまで実行されない)
net use Z: /delete

REM コマンドプロンプトウィンドウを開いたままにする
pause

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?