Comment on page
Software Installations on Windows
This page contains instructions for installing Anaconda/Bioconda on Windows, Ubuntu on Windows, Mac, a Lawrence account, and Jetstream
Warning: this site is under construction. The information may be incomplete.
.png?alt=media&token=ac6ba8bf-e3ef-4416-a39e-04c860118184)
Scroll down to the download section. Select "Windows", then select "Download".
.png?alt=media&token=1110baf4-eb41-4658-8e24-83934633843b)
Follow the installation wizard.

.png?alt=media&token=44fb6f9b-d305-49da-ae42-0c7319ec164e)
To open Anaconda, go to the start menu and expand the Anaconda3 folder.
.png?alt=media&token=84c7da60-9933-41b2-8931-e6f4f4fc787c)
Select "Anaconda Navigator".
.png?alt=media&token=6ee58274-d126-4e5b-8e8b-22dadb7624e4)
.png?alt=media&token=421e1c67-f6fb-4d9c-a1ba-b7b666ddfddf)
Ubuntu for Windows can be downloaded from the Microsoft store.

Search for "ubuntu".

Select the app.

Click "Get", then "Install".


Search for "Ubuntu" and select the app.
.png?alt=media&token=fd2ea853-2727-4fe1-bc35-3d67024eed36)
The window will look like this:
.png?alt=media&token=84290c47-0fae-4560-9fe7-086f21f70654)
First, open Ubuntu for Windows (see above) and check to ensure that conda is not already installed.
user@NI0000:~$ which conda
If it has been, a file path will show up under the command, if not, the next line will be a prompt.

Download the installer
user@NI0000:~$ wget --quiet --no-check-certificate https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64
.sh
user@NI0000:~$ ls
Miniconda3-latest-Linux-x86_64.sh
Run the installer
user@NI0000:~$ bash Miniconda3-latest-Linux-x86_64.sh -b -p $HOME/anaconda3
PREFIX=/home/adison/anaconda3
Unpacking payload ...
…
zstd pkgs/main/linux-64::zstd-1.3.7-h0b5b093_0
…
Preparing transaction: done
Executing transaction: done
installation finished.
…
user@NI0000:~$
Run an update:
user@NI0000:~$ $HOME/anaconda3/bin/conda update conda -y
Collecting package metadata (current_repodata.json): done
Solving environment: done
...
Executing transaction: done
user@NI0000:~$
Then install Anaconda
user@NI0000:~$ $HOME/anaconda3/bin/conda install anaconda -y
Collecting package metadata (current_repodata.json): done
Solving environment: done
## Package Plan ##
...
Verifying transaction: done
Executing transaction: / b'Enabling notebook extension jupyter-js-widgets/extension...\n - Validating: \x1b[32mOK\x1b[0m\n' done
user@NI0000:~$
Initialize
user@NI0000:~$ $HOME/anaconda3/bin/conda init
no change /home/user/anaconda3/condabin/conda
...
no change /home/user/anaconda3/etc/profile.d/conda.csh
modified /home/user/.bashrc
==> For changes to take effect, close and re-open your current shell. <==
user@NI0000:~$
Close and re-open your Ubuntu command line.
After running the installation of Anaconda on Ubuntu on Windows (see above), add bioconda:
user@NI0000:~$ conda config --add channels bioconda
Last modified 4yr ago