Skip to main content

Posts

Showing posts from March, 2021

Downloading and Installing R and R Studio on Windows Operating System

Hello Everyone, This is a tutorial about how to download and install R and R Studio on Windows Operating System. R is a programming language and free software environment for statistical computing and graphics supported by the R Foundation for Statistical Computing. The R language is widely used among statisticians and data miners for developing statistical software and data analysis. PREREQUISITE- 1. To follow the installation procedure, you need to be connected to the Internet. 2. Following system requirements should be met: At least 1GB disk space should be available. Minimum of 1GB RAM. 2GHz dual-core processor or above. Part A: Steps for Installing R Step 1) Go to the website https://www.r-project.org/. Under the tab Getting Started , click on download R. A page named CRAN-Mirrors opens. Step 2) Under the mirror 0-Cloud, click on link, https://cloud.r-project.org/. A page named The Comprehensive R A

Connecting GitHub with Jenkins - Step by step Tutorial

Hello Everyone, In this tutorial, we will learn how to create a New Item (Project), connect Git and GitHub to Jenkins and run the files from the Git repository on Jenkins. Jenkins is an open-source automation tool written in Java with plugins built for Continuous Integration purposes. Jenkins is used to build and test your software projects continuously making it easier for developers to integrate changes to the project, and making it easier for users to obtain a fresh build. Facing trouble with the installation of Jenkins? Click here to know more. NOTE: It is mandatory to install plugins for Git and GitHub before connecting your GitHub repository to Jenkins. If you're using Jenkins for the first time, you need to install the plugins. To know more about these plugins, check out Git and GitHub Plugins for Jenkins . This tutorial demonstrates executing python code which requires separate plugins. Know more about Python Plugi

How to add Plugins for Git and GitHub in Jenkins

Hello Everyone, This tutorial will help to add the plugins for Git and GitHub in Jenkins. Jenkins is an open-source automation tool written in Java with plugins built for Continuous Integration purposes. Jenkins is used to build and test your software projects continuously making it easier for developers to integrate changes to the project, and making it easier for users to obtain a fresh build. To connect GitHub with Jenkins, the following essential plugins must be installed. Git Git client plugin Git server plugin GitHub GitHub API Plugin Following are the steps to install the plugins on Jenkins. (These steps are common for the installation of all the plugins). Step 1) Select Manage Jenkins option from the dashboard. Step 2) In Manage Jenkins, select Manage Plugins. Step 3) Now click on the Available tab. In the search bar, enter Git. (If the plugins are already installed, cl

How to add Python Plugins in Jenkins

Hello Everyone, This tutorial is based on the different plugins required to execute python programs on Jenkins. Jenkins is an open-source automation tool written in Java with plugins built for Continuous Integration purposes. Jenkins is used to build and test your software projects continuously making it easier for developers to integrate changes to the project, and making it easier for users to obtain a fresh build. To execute any Python Code on Jenkins, there are two essential plugins which must be installed. The two plugins are - Shining Panda plugin and Python plugin. Following are the steps to install the plugins on Jenkins. (These steps are common for the installation of all the plugins). Step 1) Select Manage Jenkins option from the dashboard. Step 2) In Manage Jenkins, select Manage Plugins. Step 3) Now click on the Available tab. In the search bar, enter Python. (If the plugins are already installe

Creating a New Item/Project in Jenkins

Hello Everyone, In this tutorial, we will learn how to create a New Item (Project) and run a simple python program on Jenkins. Jenkins is an open-source automation tool written in Java with plugins built for Continuous Integration purposes. Jenkins is used to build and test your software projects continuously making it easier for developers to integrate changes to the project, and making it easier for users to obtain a fresh build. Facing trouble with the installation of Jenkins? Click here to know more. NOTE: It is mandatory to install plugins for python before executing python files on Jenkins. If you're using Jenkins for the first time, you need to install the plugins. To know more about Python Plugins, kindly check out Python Plugins for Jenkins. Step 1) From the Jenkins Dashboard, select New Item . Step 2) Enter the Item name (Name of the project) and then select Freestyle project . Step 3) Enter the Project Descripti