Changes
Page history
Update home
authored
Jul 08, 2020
by
van Vliet
Show whitespace changes
Inline
Side-by-side
home.md
View page @
acf4f7f4
...
...
@@ -1976,3 +1976,18 @@ Bioconda is a channel for the conda package manager specializing in bioinformati
[
Bioconda documentation
](
https://bioconda.github.io/user/index.html
)
#### Overview useful commands
| Desciption | command |
| --- | --- |
| Verify Conda is installed, check version number | conda info |
| Create a new environment named ENVNAME | conda create --name ENVNAME |
| Activate a named Conda environment | conda activate ENVNAME |
| Deactivate current environment | conda deactivate |
| List all packages and versions in the active environment | conda list |
| Delete an entire environment | conda remove --name ENVNAME --all |
| Search for a package in currently configured channels | conda search PKGNAME |
| Install a package | conda install PKGNAME |
| Detailed information about package versions | conda search PKGNAME --info |
| Remove a package from an environment | conda uninstall PKGNAME --name ENVNAME |
| Add a channel to your Conda configuration | conda config --add channels CHANNELNAME |