Skip to content

Commit edb34c5

Browse files
authored
Simplify installation instructions in README
Removed detailed installation instructions for R and build tools across different platforms.
1 parent cb92b36 commit edb34c5

1 file changed

Lines changed: 0 additions & 56 deletions

File tree

README.md

Lines changed: 0 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -10,62 +10,6 @@ Core package containing all the tools for simple and advanced source extraction.
1010

1111
## Installation
1212

13-
### Getting R
14-
15-
First things first, you will probably want to install a recent version of **R** that lets you build packages from source. The advantage of choosing this route is you can then update bleeding edge versions directly from GitHub. If you rely on the pre-built binaries on CRAN you might be waiting much longer.
16-
17-
#### Mac
18-
19-
For Mac just get the latest binaries from the **R** project pages:
20-
21-
<https://cloud.r-project.org/bin/macosx/>
22-
23-
#### Windows
24-
25-
For Windows just get the latest binaries from the **R** project pages:
26-
27-
<https://cloud.r-project.org/bin/windows/>
28-
29-
#### Linux
30-
31-
Debian: `sudo apt-get install r-base r-base-dev`
32-
33-
Fedora: `sudo yum install R`
34-
35-
Suse: More of a pain, see here <https://cloud.r-project.org/bin/linux/suse/README.html>
36-
37-
Ubuntu: `sudo apt-get install r-base-dev`
38-
39-
All the info on binaries is here: <https://cloud.r-project.org/bin/linux/>
40-
41-
If you have a poorly supported version of Linux (e.g. CentOS) you will need to install **R** from source with the development flags (this bit is important). You can read more here: <https://cloud.r-project.org/sources.html>
42-
43-
Now you have the development version of **R** installed (hopefully) I would also suggest you get yourself **R-Studio**. It is a very popular and well maintained **R** IDE that gives you a lot of helpful shortcuts to scripting and analysing with **R**. The latest version can be grabbed from <https://www.rstudio.com/products/rstudio/> where you almost certainly want the free Desktop version.
44-
45-
If you wish to use the command line version of **R** on Mac (why?!) then you might need to separately install **XQuartz** and set the DISPLAY system variable via something like export DISPLAY=:0 (this is not an issue for most people however).
46-
47-
### Build Tools
48-
49-
Some of **ProFound** requires compiling, so here is what you might need depending on your platform.
50-
51-
#### Linux Users
52-
53-
You know what you are doing. You do you!
54-
55-
#### Mac Users
56-
57-
You should not need to install separate compilers with any **R** after v4.0.0, but in case you are stuck on a museum version you can follow the extra instructions here:
58-
59-
[https://mac.r-project.org/tools/](https://mac.r-project.org/tools/)
60-
61-
#### Windows Users
62-
63-
Windows users might need to go through a couple of additional steps depending on how their system is set up, but most likely you will need to at least install *Rtools* for later parts of this course, which are available at [https://cran.r-project.org/bin/windows/Rtools/](https://cran.r-project.org/bin/windows/Rtools/) and follow the instructions about how to link these into your system path. You will know it is working because the following will not be empty:
64-
65-
```R
66-
Sys.which("make")
67-
```
68-
6913
### Getting ProFound
7014

7115
Source installation from GitHub should be easy:

0 commit comments

Comments
 (0)