Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents

...

Download Install Script

curl -O https://githubraw.githubusercontent.com/snetsystems/cmp/blob/master/etc/install_conda.sh
or
wget https://githubraw.githubusercontent.com/snetsystems/cmp/blob/master/etc/install_conda.sh

...

  • $ sh install_conda.sh -m [salt-master ip address] -i [salt-minion ID]

    • Argument

      • -m : Salt-Master의 IP address (혹은 domain)를 입력한다.

      • -i : Salt-Minion의 ID를 입력한다.

        • 입력하지 않을 경우 hostname으로 등록

      • -h : Argument의 설명

        Code Block
        [root@localhost ~]# sh install_conda.sh -h
        
        usage: install_conda.sh [options]
        
        Installs Miniconda3 & Salt-Minion
        
        -m          Set salt-master ip address, -m [ip address]
        -i          Set salt-minion ID (default : hostname), -i [minion id]
    • Conda 설치경로

      • 기본 설치경로 : /opt/miniconda3

      • 설치경로 변경 예제

        Code Block
        languagebash
        [root@localhost ~]# sh install_conda.sh -m 192.168.56.101 -i minion1
        
        --------------------------------------------------
        Salt-Master : 192.168.56.101
        Salt-Minion ID : minion1
        --------------------------------------------------
        
        Miniconda3 will now be installed into this location:
        /opt/miniconda3
        
          - Press ENTER to confirm the location
          - Press CTRL-C to abort the installation
          - Or specify a different location below
        
        [/opt/miniconda3] >>> "설치경로 입력 (미입력 시 기본설치 폴더에 설치)"

...