On Tue, 31 Jan 2023 13:12:46 +0000 Phil Smith via R-help <r-help@r-project.org> wrote:
> Some of these install with no problem. However, most of them give an > error messages that looks like: > > Warning in install.packages : > installation of package ‘curl’ had non-zero exit status I'm using my psychic debugging powers to determine that you're using some kind of Linux or another POSIX-compatible OS. Scroll up to see the error messages produced when installing the curl package. You'll see that it's complaining about the lack of development headers for cURL library. If you install them using your package manager (which could be `sudo apt install libcurl4-openssl-dev`, `sudo yum install curl-devel` or something else depending on the OS/distro), the installation of the curl package should succeed, allowing you to install other packages that depend on it. -- Best regards, Ivan ______________________________________________ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.