Giter Club home page Giter Club logo

r_installation_steps's Introduction

Jupyter Notebook Installation with Miniconda

mkdir -p  /usr/bigdata
mkdir softwares
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh -b -p /usr/bigdata/Miniconda3
export PATH=/usr/bigdata/Miniconda3/bin:$PATH
/usr/bigdata/Miniconda3/bin/conda create -n pythonML -y
source activate pythonML
pip install notebook
nohup jupyter notebook --ip=0.0.0.0 &

R_installation_steps


export PATH=/usr/bigdata/tools/bin:$PATH
export LD_LIBRARY_PATH=/usr/bigdata/tools/lib:$LD_LIBRARY_PATH
export CFLAGS="-I/usr/bigdata/tools/include"
export LDFLAGS="-L/usr/bigdata/tools/lib"

yum -y groupinstall "Development Tools"
yum -y install xz xz-devel libcurl-devel bzip2-devel zlib-devel readline-devel xorg-x11-server-devel libX11-devel libXt-devel

cd $HOME

wget http://ftp.cs.stanford.edu/pub/exim/pcre/pcre2-10.37.tar.gz

tar -zxvf pcre2-10.37.tar.gz
cd pcre2-10.37
./configure --prefix=/usr/bigdata/tools
make -j 24
make install

cd $HOME

wget https://cran.r-project.org/src/base/R-4/R-4.1.2.tar.gz
tar -zxvf R-4.1.2.tar.gz
cd R-4.1.2

./configure --prefix=/usr/bigdata/R-4.1.2 --enable-R-shlib --with-x=yes --with-readline --enable-memory-profiling
make
make install

./R
install.packages('IRkernel')
install.packages('plotly')
IRkernel::installspec(user = TRUE)

r_installation_steps's People

Contributors

skumarx87 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.