mkearney / tweetbotornot

🤖 R package for detecting Twitter bots via machine learning
https://tweetbotornot.mikewk.com
Other
388 stars 136 forks source link

Can't download the package #18

Open paufiorini opened 6 years ago

paufiorini commented 6 years ago

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)

mkearney commented 6 years ago

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 6 years ago

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