

If that's the case find and open the Anaconda Prompt and do it from there (the Anaconda Prompt should be available in your Start Menu (Win) or Applications Menu (macos))Īlternatively reinstall Anaconda choosing to add it to the PATH or add the variable manually. If your shell/prompt complains that it cannot find the command, it likely means that you installed Anaconda without adding it to the PATH environment variable. Package cache : C:\ProgramData\Miniconda3\pkgsĬ:\Users\USERNAME\AppData\Local\conda\conda\pkgsĮnvs directories : C:\Users\USERNAME\.conda\envsĬ:\Users\USERNAME\AppData\Local\conda\conda\envs User config file : C:\Users\USERNAME\.condarcīase environment : C:\ProgramData\Miniconda3 (read only)

Here's my output: (base) C:\Users\USERNAME>conda infoĪctive env location : C:\ProgramData\Miniconda3 Many conda packages and install them all with one command:Ĭonda install /packages-path/packages-filename.Conda info will display information about the current install, including the active env location which is what you want. If you prefer, you can create a /tar/ archive file containing Installing conda packages offline Ĭonda install /path-to-package/2/ conda update always installs the highest version with the same major version number, whereas conda install always installs the highest version. If Python 3.7.0 is currently installed, and the latest version of Python is 3.9.0, then conda install python=3 installs Python 3.9.0.Ĭonda uses the same rules for other packages. If Python 2.7.0 is currently installed, and the latest version of Python 2 is 2.7.5, then conda update python installs Python 2.7.5. Once the package is found, conda pulls it down and installs.Ĭonda update is used to update to the latest compatible version.Ĭonda install can be used to install any version. Parses repodata to search for the package. Reaches out to the repodata associated with your channels/platform. Looks at your configured channels (in priority). When you conda install a package that exists in a channel and has no dependencies, conda: Read more about conda environments and directory structure. In addition to the channel priority, we recommend.
Installing the files of a conda package into anĮnvironment can be thought of as changing the directory to anĮnvironment, and then downloading and extracting the artifactĪnd its dependencies-all with the single From now on using conda install
During the install process, files are extracted into the specifiedĮnvironment, defaulting to the current environment if none is specified.
