Skip to content

/bin/gtar: not found (Ubuntu 14.04) #110

@mconigliaro

Description

@mconigliaro

I get /bin/gtar: not found when running devtools::install_git("git://github.com/rstats-db/RPostgres") on Ubuntu 14.04. There's no such thing as gtar. Here's the fix:

 ln -s /bin/tar /bin/gtar

Activity

krlmlr

krlmlr commented on Nov 6, 2017

@krlmlr
Member

Thanks. The preferred method is one of

remotes::install_github("r-dbi/RPostgres")
devtools::install_github("r-dbi/RPostgres")

but I'm not sure if this fixes the gtar error.

Finesim97

Finesim97 commented on May 19, 2019

@Finesim97

Sorry for posting on an old issue, but if you don't have root:

Sys.setenv(TAR = "/bin/tar")

or run in your shell:

export TAR="/bin/tar"

Have a nice day.

github-actions

github-actions commented on Dec 7, 2020

@github-actions
Contributor

This old thread has been automatically locked. If you think you have found something related to this, please open a new issue and link to this old issue if necessary.

locked and limited conversation to collaborators on Dec 7, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @mconigliaro@Finesim97@krlmlr

        Issue actions

          /bin/gtar: not found (Ubuntu 14.04) · Issue #110 · r-dbi/RPostgres