Docs
Search…
Docs
Introduction
Command Line Basics
Lawrence HPC
About Lawrence
Login
Filesystems
Transferring Files
Software on Lawrence
Submitting Jobs
Programming Environment
Gaussian Tutorial
Lumerical (FDTD) from Lawrence on Windows PC Tutorial
Lumerical (FDTD) on Lawrence GUI Tutorial
Helpful Hints
Jupyter on Lawrence
Globus
Globus Information
Globus Tutorials
.
Non-Lawrence Guides
Downloads
Software Installations on Windows
.
Archived Information
.
Powered By
GitBook
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.
Anaconda on Windows
To download Anaconda, go to the distribution website:
https://www.anaconda.com/distribution/
.
Scroll down to the download section. Select "Windows", then select "Download".
Follow the installation wizard.
The Users Guide should pop up (
this
webpage).
To open Anaconda, go to the start menu and expand the Anaconda3 folder.
Select "Anaconda Navigator".
Anaconda on Ubuntu on Windows
Installing Ubuntu on Windows
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.
The window will look like this:
​
Installing Anaconda on Ubuntu on Windows
First, open Ubuntu for Windows (see above) and check to ensure that conda is not already installed.
1
[email protected]
:~$ which conda
Copied!
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
1
[email protected]
:~$ wget --quiet --no-check-certificate https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64
2
.sh
3
[email protected]
:~$ ls
4
Miniconda3-latest-Linux-x86_64.sh
5
​
Copied!
Run the installer
1
[email protected]
:~$ bash Miniconda3-latest-Linux-x86_64.sh -b -p $HOME/anaconda3
Copied!
1
PREFIX=/home/adison/anaconda3
2
Unpacking payload ...
3
…
4
zstd pkgs/main/linux-64::zstd-1.3.7-h0b5b093_0
5
…
6
Preparing transaction: done
7
Executing transaction: done
8
installation finished.
9
…
10
​
11
[email protected]
:~$
Copied!
Run an update:
1
[email protected]
:~$ $HOME/anaconda3/bin/conda update conda -y
Copied!
1
Collecting package metadata (current_repodata.json): done
2
Solving environment: done
3
...
4
​
5
Executing transaction: done
6
[email protected]
:~$
Copied!
Then install Anaconda
1
[email protected]
:~$ $HOME/anaconda3/bin/conda install anaconda -y
Copied!
1
Collecting package metadata (current_repodata.json): done
2
Solving environment: done
3
4
## Package Plan ##
5
...
6
Verifying transaction: done
7
Executing transaction: / b'Enabling notebook extension jupyter-js-widgets/extension...\n - Validating: \x1b[32mOK\x1b[0m\n' done
8
[email protected]
:~$
Copied!
Initialize
1
[email protected]
:~$ $HOME/anaconda3/bin/conda init
Copied!
1
no change /home/user/anaconda3/condabin/conda
2
...
3
no change /home/user/anaconda3/etc/profile.d/conda.csh
4
modified /home/user/.bashrc
5
6
==> For changes to take effect, close and re-open your current shell. <==
7
8
[email protected]
:~$
Copied!
Close and re-open your Ubuntu command line.
Bioconda on Windows on Ubuntu
After running the installation of Anaconda on Ubuntu on Windows (see above), add bioconda:
1
[email protected]
:~$ conda config --add channels bioconda
Copied!
​
​
​
​
​
​
Non-Lawrence Guides - Previous
Downloads
Next - Non-Lawrence Guides
.
Last modified
2yr ago
Copy link
Contents
Anaconda on Windows
Anaconda on Ubuntu on Windows
Installing Ubuntu on Windows
Installing Anaconda on Ubuntu on Windows
Bioconda on Windows on Ubuntu