Visual Studio Code とAnacondaの設定

2021.04.29 Debian buster

1 Visual Studio Codeの設定

https://code.visualstudio.com/downloadで debパッケージをダウンロード

  2021.04現在のパッケージcode_1.55.2-1618307277_amd64.deb をインストール
$ sudo  dpkg  -i  code_1.55.2-1618307277_amd64.deb

2 Anaconda のインストール

https://www.anaconda.com/products/individualdよりLinux用のパッケージをダウンロード

  2021.04現在のパッケージ Anaconda3-2020.11-Linux-x86_64.sh
 これをsudoでなくて通常のユーザー権限でインストールする。
$  chmod +x Anaconda3-2020.11-Linux-x86_64.sh
$ ./Anaconda3-2020.11-Linux-x86_64.sh

    Do you accept the license terms? [yes|no]
    [no]>>> yes

    Do you wish the installer to prepend the Anaconda3 install location
    to PATH in your /home/xxxxx/.bashrc ? [yes|no]
    [no]>>> yes

   Do you wish to proceed with the installation of Microsoft VSCode [yes|no]
   >>> no

$  conda update conda
$ conda update --all

3 terminalのプロンプトの先頭に(base)が表示されたとき

次のコマンドを実行していったんログアウトするとなおる。
(base)hogehoge:~$  conda config --set auto_activate_base False