mkearney/tweetbotornot

Can't download the package

paufiorini opened this issue · 2 comments

Hi, I am newish using R and very interested in your package, but I can't download it. I have asked a colleague to install it and they couldn't either. Please advice.

I am using RStudio Version 1.1.419 and when I coy your code to install the package I get the following msg:
ERROR: dependencies 'dplyr', 'tibble' are not available for package 'tweetbotornot'
Installation failed: command failed (1)

You need to make sure the dependencies are installed. Currently, I'd recommend using the remotes package and set dependencies = TRUE

## install remotes pkg if not already
if (!requireNamespace("remotes")) {
  install.packages("remotes")
}

## install rtweet
remotes::install_github("mkearney/rtweet", dependencies = TRUE)

## install textfeatures
remotes::install_github("mkearney/textfeatures", dependencies = TRUE)

## install tweetbotornot
remotes::install_github("mkearney/tweetbotornot", dependencies = TRUE)
revox commented

Hi,

I tried the steps above and all as fine but it complains that

Error: (converted from warning) package ‘textfeatures’ is not available (for R version 3.3.3)

Is this package likely to get updated?

Thanks,

Andy