vmikk / metagMisc

Miscellaneous functions for metagenomic analysis.
MIT License
44 stars 11 forks source link

how to install 0.0.4 version #30

Closed JH966 closed 5 months ago

JH966 commented 6 months ago

i got a problem using prevalence how to install 0.0.4 version? i try

devtools::install_version("metagMisc", verstion = 0.0.4) Error: unexpected numeric constant in "devtools::install_version("metagMisc", verstion = 0.0.4"

and

devtools::install_version("metagMisc", 0.0.4) Error: unexpected numeric constant in "devtools::install_version("metagMisc", 0.0.4"

remotes::install_version("metagMisc", version = 0.0.4) Error: unexpected numeric constant in "remotes::install_version("metagMisc", version = 0.0.4"

remotes::install_github("metagMisc", 0.0.4) Error: unexpected numeric constant in "remotes::install_github("metagMisc", 0.0.4"

devtools::install_github("metagMisc",0.0.4) Error: unexpected numeric constant in "devtools::install_github("metagMisc",0.0.4"

please any suggestion

vmikk commented 5 months ago

To install the older version, you may use

devtools::install_github("vmikk/metagMisc@v.0.0.4")   # v.0.0.4

or

remotes::install_github("vmikk/metagMisc@v.0.0.4")