Last active
April 4, 2022 13:03
-
-
Save HanjoStudy/82fb92e1bc6b0e5adeaafe2364d761d0 to your computer and use it in GitHub Desktop.
Revisions
-
HanjoStudy revised this gist
Sep 6, 2020 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -29,4 +29,5 @@ echo $PATH sqlplus # should give you the command prompt # # https://cran.r-project.org/web/packages/ROracle/index.html wget https://cran.r-project.org/src/contrib/ROracle_1.3-1.tar.gz sudo R CMD INSTALL --configure-args='--with-oci-lib=/usr/lib/oracle/19.8/client64/lib --with-oci-inc=/usr/include/oracle/19.8/client64' ROracle_1.3-1.tar.gz -
HanjoStudy revised this gist
Sep 6, 2020 . 1 changed file with 4 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,10 +3,10 @@ https://thraxys.wordpress.com/2016/10/25/install-roracle-on-linux/ # Downloads ------------------------------------------------------------- wget https://download.oracle.com/otn_software/linux/instantclient/19800/oracle-instantclient19.8-basic-19.8.0.0.0-1.x86_64.rpm wget https://download.oracle.com/otn_software/linux/instantclient/19800/oracle-instantclient19.8-devel-19.8.0.0.0-1.x86_64.rpm wget https://download.oracle.com/otn_software/linux/instantclient/19800/oracle-instantclient19.8-jdbc-19.8.0.0.0-1.x86_64.rpm wget https://download.oracle.com/otn_software/linux/instantclient/19800/oracle-instantclient19.8-odbc-19.8.0.0.0-1.x86_64.rpm wget https://download.oracle.com/otn_software/linux/instantclient/19800/oracle-instantclient19.8-sqlplus-19.8.0.0.0-1.x86_64.rpm # Installs --------------------------------------------------------------- sudo alien -i oracle-instantclient19.8-basic-19.8.0.0.0-1.x86_64.rpm @@ -29,5 +29,4 @@ echo $PATH sqlplus # should give you the command prompt # # https://cran.r-project.org/web/packages/ROracle/index.html sudo R CMD INSTALL --configure-args='--with-oci-lib=/usr/lib/oracle/19.8/client64/lib --with-oci-inc=/usr/include/oracle/19.8/client64' ROracle_1.3-1.tar.gz -
HanjoStudy revised this gist
Sep 6, 2020 . 1 changed file with 10 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,13 @@ https://thraxys.wordpress.com/2016/10/25/install-roracle-on-linux/ # Downloads ------------------------------------------------------------- wget https://download.oracle.com/otn_software/linux/instantclient/19800/oracle-instantclient19.8-basic-19.8.0.0.0-1.x86_64.rpm wget oracle-instantclient19.8-devel-19.8.0.0.0-1.x86_64.rpm wget oracle-instantclient19.8-jdbc-19.8.0.0.0-1.x86_64.rpm wget oracle-instantclient19.8-odbc-19.8.0.0.0-1.x86_64.rpm wget oracle-instantclient19.8-sqlplus-19.8.0.0.0-1.x86_64.rpm # Installs --------------------------------------------------------------- sudo alien -i oracle-instantclient19.8-basic-19.8.0.0.0-1.x86_64.rpm sudo alien -i oracle-instantclient19.8-devel-19.8.0.0.0-1.x86_64.rpm @@ -20,4 +29,5 @@ echo $PATH sqlplus # should give you the command prompt # # https://cran.r-project.org/web/packages/ROracle/index.html wget https://cran.r-project.org/src/contrib/ROracle_1.3-1.tar.gz sudo R CMD INSTALL --configure-args='--with-oci-lib=/usr/lib/oracle/19.8/client64/lib --with-oci-inc=/usr/include/oracle/19.8/client64' ROracle_1.3-1.tar.gz -
HanjoStudy created this gist
Aug 25, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ https://thraxys.wordpress.com/2016/10/25/install-roracle-on-linux/ # Installs --------------------------------------------------------------- sudo alien -i oracle-instantclient19.8-basic-19.8.0.0.0-1.x86_64.rpm sudo alien -i oracle-instantclient19.8-devel-19.8.0.0.0-1.x86_64.rpm sudo alien -i oracle-instantclient19.8-jdbc-19.8.0.0.0-1.x86_64.rpm sudo alien -i oracle-instantclient19.8-odbc-19.8.0.0.0-1.x86_64.rpm sudo alien -i oracle-instantclient19.8-sqlplus-19.8.0.0.0-1.x86_64.rpm # export LD_LIBRARY_PATH=/usr/lib/oracle/19.8/client64/lib/${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} export ORACLE_HOME=/usr/lib/oracle/19.8/client64 export PATH=$PATH:$ORACLE_HOME/bin # echo "/usr/lib/oracle/19.8/client64/lib" | sudo tee /etc/ld.so.conf.d/oracle.conf sudo ldconfig -v # echo $LD_LIBRARY_PATH echo $ORACLE_HOME echo $PATH sqlplus # should give you the command prompt # # https://cran.r-project.org/web/packages/ROracle/index.html sudo R CMD INSTALL --configure-args='--with-oci-lib=/usr/lib/oracle/19.8/client64/lib --with-oci-inc=/usr/include/oracle/19.8/client64' ROracle_1.3-1.tar.gz