Reputation: 1
I am following directions from https://wiki.centenary.org.au/display/SPECTRE/Install+Spectre+from+Github. I do not know RStudio very well, but I need to work with some data and thus need Spectre. For some reason when I put the requisite code it does not work.
Code:
if(!require('devtools')) {install.packages('devtools')}
library('devtools') install_github("immunedynamics/spectre")
Output (A lot of nonsense followed by):
Spectre::package.check()
Error in loadNamespace(x) : there is no package called ‘Spectre’
Upvotes: 0
Views: 296
Reputation: 1
Sorry you had issues during installation. We've made a few updates that should solve this particular problem (which will be present in v0.5.2
and above). Try installing again using the same instructions. I.e.:
if(!require('devtools')) {install.packages('devtools')}
devtools::install_github("immunedynamics/spectre")
You can also post an issue here if you run into any more trouble.
Good luck!
Tom
Upvotes: 0