-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FAQ - How do I install the {curl} package? #124
Open
terrymclaughlin
wants to merge
2
commits into
main
Choose a base branch
from
123-faq-how-do-i-install-the-curl-package
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ This document aims to answer frequently asked questions from users in relation t | |
* [Why do I get Status code 502/504 errors when starting a session and what can I do about it?](#sessions-502-504) | ||
* [Installing Packages](#installing-packages) | ||
* [What do I do if I cannot install any packages?](#what-do-i-do-if-i-cannot-install-any-packages) | ||
* [How do I install the `{curl}` package?](#how-do-i-install-the-curl-package) | ||
* [How do I install the `{hablar}` package?](#how-do-i-install-the-hablar-package) | ||
* [How do I install the `{ranger}` package?](#how-do-i-install-the-ranger-package) | ||
* [What do I do if a package requires `{rJava}`?](#what-do-i-do-if-a-package-requires-rjava) | ||
|
@@ -132,6 +133,20 @@ If clicking the refresh button in your web browser had no effect, return to the | |
|
||
If you cannot install any packages **and** have an error message saying your home directory is not writeable or the directory is not correctly mounted then you should raise a call in [Service Now](https://nhsnss.service-now.com/phs/) and ask to have your cache cleared. Only raise a service call if you are getting these error messages. | ||
|
||
#### How do I install the `{curl}` package? | ||
|
||
The `{curl}` package from v6.0.0 onwards requires a C++17 compiler which the existing Posit Workbench environment does not provide. The solution is to install v5.2.3 of the `{curl}` package: | ||
|
||
```{r} | ||
# Install {curl} v5.2.3 from the last Posit Package Manager snapshot that contained this version | ||
install.packages("curl", repos = "https://ppm.publichealthscotland.org/all-r/__linux__/centos7/2024-11-04+Y3JhbiwzOjIyNzUsNDoyMjQ5LDU6MjM4OCw2Ojg2Myw3OjIzNjksODoyMzE0OzI4MkU4MzFE") | ||
|
||
# -- or -- | ||
|
||
# Install {curl} v5.2.3 from the source code in Posit Package Manager | ||
install.packages("https://ppm.publichealthscotland.org/all-r/latest/src/contrib/Archive/curl/curl_5.2.3.tar.gz", repos = NULL, type="source") | ||
Comment on lines
+144
to
+147
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This bit isn't needed, since we're already assuming people have access to PPM in the above example, and that will serve binary or source as available. |
||
``` | ||
|
||
#### How do I install the `{hablar}` package? | ||
|
||
The `{hablar}` package cannot be installed as a pre-compiled binary; attempting this gives an error. Therefore, you need to force R to install the source version by specifying the URL for the source version of packages on Package Manager. However, `{hablar}`'s dependencies can be installed as binaries first. | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the suggested way to install (https://ppm.publichealthscotland.org/client/#/repos/3/packages/curl)