美文网首页
conda Installing on macOS

conda Installing on macOS

作者: fishmai0 | 来源:发表于2018-07-16 17:42 被阅读15次

    Installing on macOS

    Download the installer:

    Miniconda installer for macOS.

    Anaconda installer for macOS.

    Install:

    Miniconda—In your Terminal window, run:

    Anaconda—Double-click the .pkg file.

    Follow the prompts on the installer screens.

    If you are unsure about any setting, accept the defaults. You can change them later.

    To make the changes take effect, close and then re-open your Terminal window.

    Test your installation.

    Installing in silent mode

    NOTE: The following instructions are for Miniconda. For Anaconda, substitute Anaconda for Miniconda in all of the commands.

    To run the silent installation of Miniconda for macOS or Linux, specify the -b and -p arguments of the bash installer. The following arguments are supported:

    -b—Batch mode with no PATH modifications to ~/.bashrc. Assumes that you agree to the license agreement. Does not edit the .bashrc or .bash_profile files.

    -p—Installation prefix/path.

    -f—Force installation even if prefix -p already exists.

    EXAMPLE:

    NOTE: This sets the PATH only for the current session, not permanently. Trying to use conda when conda is not in your PATH causes errors such as “command not found.”

    In each new bash session, before using conda, set the PATH and run the activation scripts of your conda packages by running:

    NOTE: Replace $HOME/miniconda/bin/activate with the path to the activate script in your conda installation.

    To set the PATH permanently, you can add a line to your .bashrc file. However, this makes it possible to use conda without running the activation scripts of your conda packages, which may produce errors.

    EXAMPLE:

    Updating Anaconda or Miniconda

    Open a Terminal window.

    Navigate to the anaconda directory.

    Run conda update conda.

    Uninstalling Anaconda or Miniconda

    Open a Terminal window.

    Remove the entire Miniconda install directory with:

    You may also:

    OPTIONAL: Edit ~/.bash_profile to remove the Miniconda directory from your PATH environment variable.

    Remove the following hidden file and folders that may have been created in the home directory:

    .condarc file

    .conda directory

    .continuum directory

    By running:

    相关文章

      网友评论

          本文标题:conda Installing on macOS

          本文链接:https://www.haomeiwen.com/subject/uugbpftx.html