Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't download the package #18

Open
paufiorini opened this issue Jul 31, 2018 · 2 comments
Open

Can't download the package #18

paufiorini opened this issue Jul 31, 2018 · 2 comments

Comments

@paufiorini
Copy link

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
Copy link
Owner

mkearney commented Oct 4, 2018

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
Copy link

revox commented Nov 27, 2018

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants