やりたいこと
ブルースタックスというアプリを起動させる。
python
1import subprocess 2subprocess.run("パス指定")
パスは↓
"C:\Program Files\BlueStacks_nxt\HD-Player.exe" --instance Nougat32
これをコマンドプロンプトで打つと実行できます。
pythonでやるとき「--instance Nougat32」の指定の仕方が分かりません。
回答お待ちしています。
解決方法
subprocess.run(["C:\Program Files\BlueStacks_nxt\HD-Player.exe", "--instance", "Nougat32"])
上記のようになります
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/07/17 23:15
2021/07/17 23:26
2021/07/18 00:11
2021/07/18 01:30
2021/07/18 02:59