-
Notifications
You must be signed in to change notification settings - Fork 68
CDAT under windows
It is possible to use Linux applications under Windows 10, you need
- Windows Subsystem for Linux
- X11 Server
Then you simply use the "bash" command and start your regular conda environment
WSL requires fewer resources (CPU, memory, and storage) than a full virtualized machine. WSL also allows you to run Linux command-line tools and apps alongside your Windows command-line, desktop and store apps, and to access your Windows files from within Linux. This enables you to use Windows apps and Linux command-line tools on the same set of files if you wish.
Make sure you have Windows 10 and that is is up to date.
Follow instructions here
The Windows Subsystem for Linux does not support X11 so we will need to install one on our windows machine
Follow instructions for Step one here
every time you start bash!
export DISPLAY=:0.0
Start the bash command line and type:
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install gcc libglu1-mesa mesa-utils libsm6 x11-apps
You need to download and install the Linux conda
Note that the following install miniconda not the full anaconda
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh
bash miniconda.sh -b -p $HOME/miniconda2
Follow Instructions here