3
6

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 3 years have passed since last update.

Anaconda on Windows Terminal

Last updated at Posted at 2019-12-11

Anaconda on Windows Terminal

前回の**「ROS on Windows Terminal」**に続いて、今回は「Anaconda on Windows Terminal」です。

setting.json

Windows Terminalを管理者として実行し、+からsettingを選びます。
そうすると、setting.jsonが開くので、

        {
            "acrylicOpacity": 1.0,
            "closeOnExit": true,
            "colorScheme": "Campbell",
            "commandline": "cmd.exe /k C:\\Users\\username\\Anaconda3\\Scripts\\activate.bat",
            "cursorColor": "#FFFFFF",
            "cursorShape": "bar",
            "fontFace": "consolas",
            "fontSize": 14,
            "guid": "{xxx}",
            "historySize": 9001,
            "name": "Anaconda",
            "padding": "0, 0, 0, 0",
            "snapOnInput": true,
            "startingDirectory": "%HOME%",
            "tabTitle": "Anaconda",
            "useAcrylic": true,
        }

あとは少々変更

  • ユーザ名(username)を自分の物に
  • Anacondaのディレクトリの場所が正しいのか確認
  • "startingDirectory"の変更

より詳しい説明

画像が多くわかりやすいので、英語ですがもしわからなければこちらを参照してください。

結果

たくさんできた
Windows Terminal

ちなみに

conda activate env1

これで仮想環境を変えられます

3
6
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
3
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?