install curl and readr on R

前端 未结 2 521
自闭症患者
自闭症患者 2021-01-31 09:06

Greeting dear community. I try to install readr but it gives me an error because of there is no curl. I then try to install curl and it asks for another dependency. I verify tha

2条回答
  •  春和景丽
    2021-01-31 09:14

    The actual problem is:

    File curl.h not found.

    R suggests a solution:

    Make sure the curl development library is installed, e.g. libcurl4-openssl-dev (deb) or libcurl-devel (rpm)

    So, try:

    sudo yum -y install libcurl-devel
    

提交回复
热议问题