Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

conda install package

#To install a package in currently active enviroment
conda install package-name
Comment

conda install package

#To install specific package version into a specific named environment
conda install package-name=2.3.4 -n some-environment
Comment

conda install version

Format         Sample Specification     Results
Exact          qtconsole==4.5.1         4.5.1
Fuzzy          qtconsole=4.5            4.5.0, 4.5.1, ..., etc.
>=, >, <, <=  "qtconsole>=4.5"          4.5.0 or higher
               qtconsole"<4.6"          less than 4.6.0

OR            "qtconsole=4.5.1|4.5.2"   4.5.1, 4.5.2
AND           "qtconsole>=4.3.1,<4.6"   4.3.1 or higher but less than 4.6.0
Comment

conda install

usage: conda install [-h] [--revision REVISION] [-n ENVIRONMENT | -p PATH]
                     [-c CHANNEL] [--use-local] [--override-channels]
                     [--repodata-fn REPODATA_FNS] [--strict-channel-priority]
                     [--no-channel-priority] [--no-deps | --only-deps]
                     [--no-pin] [--copy] [-C] [-k] [--offline] [-d] [--json]
                     [-q] [-v] [-y] [--download-only] [--show-channel-urls]
                     [--file FILE]
                     [--experimental-solver {classic,libmamba,libmamba-draft}]
                     [--force-reinstall]
                     [--freeze-installed | --update-deps | -S | --update-all | --update-specs]
                     [-m] [--clobber] [--dev]
                     [package_spec [package_spec ...]]
Comment

how to install conda

start /wait "" Miniconda3-latest-Windows-x86_64.exe /InstallationType=JustMe /RegisterPython=0 /S /D=%UserProfile%Miniconda3
Comment

PREVIOUS NEXT
Code Example
Shell :: git add and commit in one command 
Shell :: photoview github 
Shell :: homebrew tomcat 
Shell :: script delete files older than 
Shell :: composer v2 
Shell :: install dependencies npm 
Shell :: kill background job 
Shell :: how to boot from grub rescue 
Shell :: No toolchains found in the NDK toolchains folder for ABI with prefix: arm-linux-androideabi 
Shell :: ncrack ftp brute force 
Shell :: does npm install takes arguments 
Shell :: redux 
Shell :: git clone and create directory 
Shell :: how to compress files in powershell 
Shell :: configurar chave ssh gitlab 
Shell :: find index of string in bash 
Shell :: renaming branch in git 
Shell :: rename git repository command line 
Shell :: append data to a file with cat command 
Shell :: rsync delete old files 
Shell :: swagger editor locally 
Shell :: run tar.xz ubuntu 
Shell :: pdf compressor linux 
Shell :: install bottom navigation in native 
Shell :: scp command ubuntu 
Shell :: For which GitHub repository would you like to set up a GitHub workflow? 
Shell :: dir command list all files and subdirectories 
Shell :: ssh bad owner permissions 
Shell :: checkout git specific commit 
Shell :: grep substring 
ADD CONTENT
Topic
Content
Source link
Name
7+6 =