Following is the set of instructions:
- Install the docker on your machine.
- Pull the Centos docker image
- Create a container using the Centos docker image. Following command could be used:
docker run -ti -dP --name centos -v /c/Users:/mnt/Users centos:latest /bin/bash
- Start the docker container and attach. Following command can be used:
# Starts the docker container docker start centos # Attach docker attach centos
- Following command could be executed to install NodeJS:
# Run as root on RHEL, CentOS, CloudLinux or Fedora: curl -sL https://rpm.nodesource.com/setup | bash - # Install as Root yum install -y nodejs
And, that is it. Once the installation is done, type “npm” and you would find “npm” usage command instructions.
- Accuracy, Precision, Recall & F1-Score – Python Examples - August 3, 2022
- Support Vector Machine (SVM) Python Example - August 3, 2022
- Overfitting & Underfitting in Machine Learning - August 3, 2022
Leave a Reply