tokami / TropFishR

Tropical Fisheries Analysis with R
24 stars 19 forks source link

Development version not installing #29

Closed Saheen0350 closed 3 years ago

Saheen0350 commented 5 years ago

install.packages(devtools) Error in install.packages : object 'devtools' not found devtools::install_github(“tokami/TropFishR”) Error: unexpected input in "devtools::install_github(“"

marchtaylor commented 5 years ago

Might this be an issue with your "smart" quotation marks. I don't see the issue right away.

alko989 commented 5 years ago

devtools should be in quotes. And use normal double quotes ", instead of the fancy ones “

install.packages("devtools")

Also you can use the lighter "remotes" package.

install.packages("remotes")
remotes::install_github("tokami/TropFishR")

These were wrong in the Readme.md file. I made changes and sent a pull request to fix those.