Installing openssl on R Announcing the arrival of Valued Associate #679: Cesar Manara ...

How to get a single big right brace?

Putting Ant-Man on house arrest

Is the Mordenkainen's Sword spell underpowered?

Why does my GNOME settings mention "Moto C Plus"?

Is there a verb for listening stealthily?

Kepler's 3rd law: ratios don't fit data

How to create a command for the "strange m" symbol in latex?

Protagonist's race is hidden - should I reveal it?

Does using the Inspiration rules for character defects encourage My Guy Syndrome?

Marquee sign letters

Can I ask an author to send me his ebook?

Why are two-digit numbers in Jonathan Swift's "Gulliver's Travels" (1726) written in "German style"?

Can a Wizard take the Magic Initiate feat and select spells from the Wizard list?

Coin Game with infinite paradox

What helicopter has the most rotor blades?

Why did Bronn offer to be Tyrion Lannister's champion in trial by combat?

When does Bran Stark remember Jamie pushing him?

Why is one lightbulb in a string illuminated?

Why doesn't the university give past final exams' answers?

Raising a bilingual kid. When should we introduce the majority language?

How to mute a string and play another at the same time

How was Lagrange appointed professor of mathematics so early?

Will I be more secure with my own router behind my ISP's router?

How can I introduce the names of fantasy creatures to the reader?



Installing openssl on R



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
2019 Community Moderator Election Results
Why I closed the “Why is Kali so hard” questionInstalling OpenSSL shared libraries on CentOS 6.5OpenSSL updating ciphers suitesOpenSSL 1.0.1e usage bug?openssl and OCSP'-batch' in opensslR configure file error: C compiler cannot create executablesopenssl issue while installing apache 2.4.23openssl s_client set character modeWhy is pkg-config --cflags openssl returning nothing on RHEL 6.8?openssl generating SHA-256





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







5















I'm trying to install openssl inside R, using install.packages('openssl'), but I'm getting an error message:



* installing *source* package ‘openssl’ ...
** package ‘openssl’ successfully unpacked and MD5 sums checked
Found pkg-config cflags and libs!
Using PKG_CFLAGS=
Using PKG_LIBS=-lssl -lcrypto -ldl -lz
------------------------- ANTICONF ERROR ---------------------------
Configuration failed because openssl was not found. Try installing:
* deb: libssl-dev (Debian, Ubuntu, etc)
* rpm: openssl-devel (Fedora, CentOS, RHEL)
* csw: libssl_dev (Solaris)
* brew: openssl (Mac OSX)
If openssl is already installed, check that 'pkg-config' is in your
PATH and PKG_CONFIG_PATH contains a openssl.pc file. If pkg-config
is unavailable you can set INCLUDE_DIR and LIB_DIR manually via:
R CMD INSTALL --configure-vars='INCLUDE_DIR=... LIB_DIR=...'
--------------------------------------------------------------------
ERROR: configuration failed for package ‘openssl’
* removing ‘/usr/local/lib64/R/library/openssl’


Openssl seems to be installed on the system:



$ openssl version -a
OpenSSL 1.0.2f 28 Jan 2016
built on: reproducible build, date unspecified
platform: linux-x86_64
options: bn(64,64) rc4(16x,int) des(idx,cisc,16,int) idea(int) blowfish(idx)
compiler: gcc44 -I. -I.. -I../include -fPIC -DOPENSSL_PIC -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -Wa,--noexecstack -m64 -DL_ENDIAN -O3 -Wall -DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DAES_ASM -DVPAES_ASM -DBSAES_ASM -DWHIRLPOOL_ASM -DGHASH_ASM -DECP_NISTZ256_ASM
OPENSSLDIR: "/usr/local/bin/miniconda2/ssl"


I have tried to set PKG_CONFIG_PATH to where openssl.pc is located but with no luck.



Some help would be much appreciated!



I'm running SUSE11 SP2










share|improve this question














bumped to the homepage by Community 4 hours ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.











  • 1





    Is the openssl-devel package installed? This is a separate package from the one that provides the openssl command line program.

    – thrig
    Mar 18 '16 at 20:01











  • I have libopenssl-devel installed. Not sure if it's the same package on suse. I couldn't find openssl-devel in my repositories.

    – rlbc
    Mar 19 '16 at 1:22











  • Hmm, where is the openssl.pc file? Also the OPENSSLDIR under /usr/local/bin/miniconda2 is a bit strange, as all the other linux I've seen put openssl directly under /usr.

    – thrig
    Mar 19 '16 at 15:28











  • I have found openssl.pc over /usr/local/bin/miniconda2/pkgs/openssl-1.0.2d-0/lib/pkgconfig/, /usr/local/bin/miniconda2/lib/pkgconfig/ and /usr/lib64/pkgconfig/. They are all over the place.

    – rlbc
    Mar 20 '16 at 19:00






  • 2





    apt-get install libssl-dev worked for me

    – geotheory
    May 7 '16 at 13:32


















5















I'm trying to install openssl inside R, using install.packages('openssl'), but I'm getting an error message:



* installing *source* package ‘openssl’ ...
** package ‘openssl’ successfully unpacked and MD5 sums checked
Found pkg-config cflags and libs!
Using PKG_CFLAGS=
Using PKG_LIBS=-lssl -lcrypto -ldl -lz
------------------------- ANTICONF ERROR ---------------------------
Configuration failed because openssl was not found. Try installing:
* deb: libssl-dev (Debian, Ubuntu, etc)
* rpm: openssl-devel (Fedora, CentOS, RHEL)
* csw: libssl_dev (Solaris)
* brew: openssl (Mac OSX)
If openssl is already installed, check that 'pkg-config' is in your
PATH and PKG_CONFIG_PATH contains a openssl.pc file. If pkg-config
is unavailable you can set INCLUDE_DIR and LIB_DIR manually via:
R CMD INSTALL --configure-vars='INCLUDE_DIR=... LIB_DIR=...'
--------------------------------------------------------------------
ERROR: configuration failed for package ‘openssl’
* removing ‘/usr/local/lib64/R/library/openssl’


Openssl seems to be installed on the system:



$ openssl version -a
OpenSSL 1.0.2f 28 Jan 2016
built on: reproducible build, date unspecified
platform: linux-x86_64
options: bn(64,64) rc4(16x,int) des(idx,cisc,16,int) idea(int) blowfish(idx)
compiler: gcc44 -I. -I.. -I../include -fPIC -DOPENSSL_PIC -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -Wa,--noexecstack -m64 -DL_ENDIAN -O3 -Wall -DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DAES_ASM -DVPAES_ASM -DBSAES_ASM -DWHIRLPOOL_ASM -DGHASH_ASM -DECP_NISTZ256_ASM
OPENSSLDIR: "/usr/local/bin/miniconda2/ssl"


I have tried to set PKG_CONFIG_PATH to where openssl.pc is located but with no luck.



Some help would be much appreciated!



I'm running SUSE11 SP2










share|improve this question














bumped to the homepage by Community 4 hours ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.











  • 1





    Is the openssl-devel package installed? This is a separate package from the one that provides the openssl command line program.

    – thrig
    Mar 18 '16 at 20:01











  • I have libopenssl-devel installed. Not sure if it's the same package on suse. I couldn't find openssl-devel in my repositories.

    – rlbc
    Mar 19 '16 at 1:22











  • Hmm, where is the openssl.pc file? Also the OPENSSLDIR under /usr/local/bin/miniconda2 is a bit strange, as all the other linux I've seen put openssl directly under /usr.

    – thrig
    Mar 19 '16 at 15:28











  • I have found openssl.pc over /usr/local/bin/miniconda2/pkgs/openssl-1.0.2d-0/lib/pkgconfig/, /usr/local/bin/miniconda2/lib/pkgconfig/ and /usr/lib64/pkgconfig/. They are all over the place.

    – rlbc
    Mar 20 '16 at 19:00






  • 2





    apt-get install libssl-dev worked for me

    – geotheory
    May 7 '16 at 13:32














5












5








5


1






I'm trying to install openssl inside R, using install.packages('openssl'), but I'm getting an error message:



* installing *source* package ‘openssl’ ...
** package ‘openssl’ successfully unpacked and MD5 sums checked
Found pkg-config cflags and libs!
Using PKG_CFLAGS=
Using PKG_LIBS=-lssl -lcrypto -ldl -lz
------------------------- ANTICONF ERROR ---------------------------
Configuration failed because openssl was not found. Try installing:
* deb: libssl-dev (Debian, Ubuntu, etc)
* rpm: openssl-devel (Fedora, CentOS, RHEL)
* csw: libssl_dev (Solaris)
* brew: openssl (Mac OSX)
If openssl is already installed, check that 'pkg-config' is in your
PATH and PKG_CONFIG_PATH contains a openssl.pc file. If pkg-config
is unavailable you can set INCLUDE_DIR and LIB_DIR manually via:
R CMD INSTALL --configure-vars='INCLUDE_DIR=... LIB_DIR=...'
--------------------------------------------------------------------
ERROR: configuration failed for package ‘openssl’
* removing ‘/usr/local/lib64/R/library/openssl’


Openssl seems to be installed on the system:



$ openssl version -a
OpenSSL 1.0.2f 28 Jan 2016
built on: reproducible build, date unspecified
platform: linux-x86_64
options: bn(64,64) rc4(16x,int) des(idx,cisc,16,int) idea(int) blowfish(idx)
compiler: gcc44 -I. -I.. -I../include -fPIC -DOPENSSL_PIC -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -Wa,--noexecstack -m64 -DL_ENDIAN -O3 -Wall -DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DAES_ASM -DVPAES_ASM -DBSAES_ASM -DWHIRLPOOL_ASM -DGHASH_ASM -DECP_NISTZ256_ASM
OPENSSLDIR: "/usr/local/bin/miniconda2/ssl"


I have tried to set PKG_CONFIG_PATH to where openssl.pc is located but with no luck.



Some help would be much appreciated!



I'm running SUSE11 SP2










share|improve this question














I'm trying to install openssl inside R, using install.packages('openssl'), but I'm getting an error message:



* installing *source* package ‘openssl’ ...
** package ‘openssl’ successfully unpacked and MD5 sums checked
Found pkg-config cflags and libs!
Using PKG_CFLAGS=
Using PKG_LIBS=-lssl -lcrypto -ldl -lz
------------------------- ANTICONF ERROR ---------------------------
Configuration failed because openssl was not found. Try installing:
* deb: libssl-dev (Debian, Ubuntu, etc)
* rpm: openssl-devel (Fedora, CentOS, RHEL)
* csw: libssl_dev (Solaris)
* brew: openssl (Mac OSX)
If openssl is already installed, check that 'pkg-config' is in your
PATH and PKG_CONFIG_PATH contains a openssl.pc file. If pkg-config
is unavailable you can set INCLUDE_DIR and LIB_DIR manually via:
R CMD INSTALL --configure-vars='INCLUDE_DIR=... LIB_DIR=...'
--------------------------------------------------------------------
ERROR: configuration failed for package ‘openssl’
* removing ‘/usr/local/lib64/R/library/openssl’


Openssl seems to be installed on the system:



$ openssl version -a
OpenSSL 1.0.2f 28 Jan 2016
built on: reproducible build, date unspecified
platform: linux-x86_64
options: bn(64,64) rc4(16x,int) des(idx,cisc,16,int) idea(int) blowfish(idx)
compiler: gcc44 -I. -I.. -I../include -fPIC -DOPENSSL_PIC -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -Wa,--noexecstack -m64 -DL_ENDIAN -O3 -Wall -DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DAES_ASM -DVPAES_ASM -DBSAES_ASM -DWHIRLPOOL_ASM -DGHASH_ASM -DECP_NISTZ256_ASM
OPENSSLDIR: "/usr/local/bin/miniconda2/ssl"


I have tried to set PKG_CONFIG_PATH to where openssl.pc is located but with no luck.



Some help would be much appreciated!



I'm running SUSE11 SP2







openssl suse r pkg-config






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 18 '16 at 19:55









rlbcrlbc

2614




2614





bumped to the homepage by Community 4 hours ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community 4 hours ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.










  • 1





    Is the openssl-devel package installed? This is a separate package from the one that provides the openssl command line program.

    – thrig
    Mar 18 '16 at 20:01











  • I have libopenssl-devel installed. Not sure if it's the same package on suse. I couldn't find openssl-devel in my repositories.

    – rlbc
    Mar 19 '16 at 1:22











  • Hmm, where is the openssl.pc file? Also the OPENSSLDIR under /usr/local/bin/miniconda2 is a bit strange, as all the other linux I've seen put openssl directly under /usr.

    – thrig
    Mar 19 '16 at 15:28











  • I have found openssl.pc over /usr/local/bin/miniconda2/pkgs/openssl-1.0.2d-0/lib/pkgconfig/, /usr/local/bin/miniconda2/lib/pkgconfig/ and /usr/lib64/pkgconfig/. They are all over the place.

    – rlbc
    Mar 20 '16 at 19:00






  • 2





    apt-get install libssl-dev worked for me

    – geotheory
    May 7 '16 at 13:32














  • 1





    Is the openssl-devel package installed? This is a separate package from the one that provides the openssl command line program.

    – thrig
    Mar 18 '16 at 20:01











  • I have libopenssl-devel installed. Not sure if it's the same package on suse. I couldn't find openssl-devel in my repositories.

    – rlbc
    Mar 19 '16 at 1:22











  • Hmm, where is the openssl.pc file? Also the OPENSSLDIR under /usr/local/bin/miniconda2 is a bit strange, as all the other linux I've seen put openssl directly under /usr.

    – thrig
    Mar 19 '16 at 15:28











  • I have found openssl.pc over /usr/local/bin/miniconda2/pkgs/openssl-1.0.2d-0/lib/pkgconfig/, /usr/local/bin/miniconda2/lib/pkgconfig/ and /usr/lib64/pkgconfig/. They are all over the place.

    – rlbc
    Mar 20 '16 at 19:00






  • 2





    apt-get install libssl-dev worked for me

    – geotheory
    May 7 '16 at 13:32








1




1





Is the openssl-devel package installed? This is a separate package from the one that provides the openssl command line program.

– thrig
Mar 18 '16 at 20:01





Is the openssl-devel package installed? This is a separate package from the one that provides the openssl command line program.

– thrig
Mar 18 '16 at 20:01













I have libopenssl-devel installed. Not sure if it's the same package on suse. I couldn't find openssl-devel in my repositories.

– rlbc
Mar 19 '16 at 1:22





I have libopenssl-devel installed. Not sure if it's the same package on suse. I couldn't find openssl-devel in my repositories.

– rlbc
Mar 19 '16 at 1:22













Hmm, where is the openssl.pc file? Also the OPENSSLDIR under /usr/local/bin/miniconda2 is a bit strange, as all the other linux I've seen put openssl directly under /usr.

– thrig
Mar 19 '16 at 15:28





Hmm, where is the openssl.pc file? Also the OPENSSLDIR under /usr/local/bin/miniconda2 is a bit strange, as all the other linux I've seen put openssl directly under /usr.

– thrig
Mar 19 '16 at 15:28













I have found openssl.pc over /usr/local/bin/miniconda2/pkgs/openssl-1.0.2d-0/lib/pkgconfig/, /usr/local/bin/miniconda2/lib/pkgconfig/ and /usr/lib64/pkgconfig/. They are all over the place.

– rlbc
Mar 20 '16 at 19:00





I have found openssl.pc over /usr/local/bin/miniconda2/pkgs/openssl-1.0.2d-0/lib/pkgconfig/, /usr/local/bin/miniconda2/lib/pkgconfig/ and /usr/lib64/pkgconfig/. They are all over the place.

– rlbc
Mar 20 '16 at 19:00




2




2





apt-get install libssl-dev worked for me

– geotheory
May 7 '16 at 13:32





apt-get install libssl-dev worked for me

– geotheory
May 7 '16 at 13:32










1 Answer
1






active

oldest

votes


















0














I was trying to install swirl on R 3.1.3 and was stuck in the same problem - installing the openssl package. I resolved it by manually unpacking the downloaded openssl tarball in /tmp to the R packages folder (in my case R/x86_64-unknown-linux-gnu-library/3.1/) .



I was able to proceed and install swirl.



Equbay Kiflay






share|improve this answer
























    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "106"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f270760%2finstalling-openssl-on-r%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    I was trying to install swirl on R 3.1.3 and was stuck in the same problem - installing the openssl package. I resolved it by manually unpacking the downloaded openssl tarball in /tmp to the R packages folder (in my case R/x86_64-unknown-linux-gnu-library/3.1/) .



    I was able to proceed and install swirl.



    Equbay Kiflay






    share|improve this answer




























      0














      I was trying to install swirl on R 3.1.3 and was stuck in the same problem - installing the openssl package. I resolved it by manually unpacking the downloaded openssl tarball in /tmp to the R packages folder (in my case R/x86_64-unknown-linux-gnu-library/3.1/) .



      I was able to proceed and install swirl.



      Equbay Kiflay






      share|improve this answer


























        0












        0








        0







        I was trying to install swirl on R 3.1.3 and was stuck in the same problem - installing the openssl package. I resolved it by manually unpacking the downloaded openssl tarball in /tmp to the R packages folder (in my case R/x86_64-unknown-linux-gnu-library/3.1/) .



        I was able to proceed and install swirl.



        Equbay Kiflay






        share|improve this answer













        I was trying to install swirl on R 3.1.3 and was stuck in the same problem - installing the openssl package. I resolved it by manually unpacking the downloaded openssl tarball in /tmp to the R packages folder (in my case R/x86_64-unknown-linux-gnu-library/3.1/) .



        I was able to proceed and install swirl.



        Equbay Kiflay







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jul 3 '16 at 15:07









        user177960user177960

        1




        1






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Unix & Linux Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f270760%2finstalling-openssl-on-r%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Taj Mahal Inhaltsverzeichnis Aufbau | Geschichte | 350-Jahr-Feier | Heutige Bedeutung | Siehe auch |...

            Baia Sprie Cuprins Etimologie | Istorie | Demografie | Politică și administrație | Arii naturale...

            Nicolae Petrescu-Găină Cuprins Biografie | Opera | In memoriam | Varia | Controverse, incertitudini...