R 3.0 is my default version. I have R 2.14 installed and want to use that due to package dependencies. Note the packages cannot be built for 3.0. How can I force ubuntu to load the earlier version?
相关问题
- R - Quantstart: Testing Strategy on Multiple Equit
- Is shmid returned by shmget() unique across proces
- Using predict with svyglm
- Reshape matrix by rows
- Extract P-Values from Dunnett Test into a Table by
You set the PATH accordingly. There are tools / libraries that do that for you (common in university environments with multiple versions of things in
/usr/local/
or/opt
.Here is a simple ad-hoc version:
The change at the can be done by a script or in different ways -- the key is that by pre-prending
PATH
with the one for the version you want, you end up with that version found first.