This step by step tutorial will guide you through installing deep learning and Machine learning tools in the Xena Server.
-
Firstly load the Anaconda module to use the conda command.
module load anaconda3 -
Create the Conda Environment with a name.
conda create --name <env_name> python==3.6 -
Verify the installation of the environment.
conda info --envs -
Load the environment.
source activate <env_name> -
Install the deep learning Packages (You can install one of these or as per your need.)
a. Tensorflow: Install GPU version of the tensorflow for better performance
conda install -c anaconda tensorflow-gpub. Keras GPU Version
conda install -c anaconda keras-gpuc. Pytorch
conda install pytorch torchvision -c pytorch -
Install additional Machine Learning packages
i. OpenCV
conda install -c conda-forge opencvii. numpy,pandas, matpotlib , scikit-learn
conda install numpy pandas matplotlib scikit-learn