Unable to install Go depHow to resolve depedancy issues with software not obtained from a repositoryUnmet dependencies errorhow to install kjots in ubuntu 16.04Install pyqt4 . Unable to locate packageUnmet dependencies while trying to install Unity Tweak Tooldo-release-upgrade from LTS to newer (but not newest!) LTSUnable to install zfs or zfsutils on 16.04Local repository updateappstreamcli: AppStream system cache was updated, but problems were found: Metadata files have errors: /var/cache/app-info/xmls/fwupd.xml“Secret service operation failed” when trying to run Google Chrome on Ubuntu

What is going on with gets(stdin) on the site coderbyte?

Permission on Database

Non-trope happy ending?

Doesn't the system of the Supreme Court oppose justice?

Is there any evidence that Cleopatra and Caesarion considered fleeing to India to escape the Romans?

How to draw a matrix with arrows in limited space

Is it allowed to activate the ability of multiple planeswalkers in a single turn?

Does Doodling or Improvising on the Piano Have Any Benefits?

How to explain what's wrong with this application of the chain rule?

Multiplicative persistence

Which Article Helped Get Rid of Technobabble in RPGs?

"It doesn't matter" or "it won't matter"?

Why the "ls" command is showing the permissions of files in a FAT32 partition?

C++ copy constructor called at return

Can you use Vicious Mockery to win an argument or gain favours?

How much theory knowledge is actually used while playing?

Change the color of a single dot in `ddot` symbol

When were female captains banned from Starfleet?

Creating two special characters

15% tax on $7.5k earnings. Is that right?

How to get directions in deep space?

Is this toilet slogan correct usage of the English language?

How to make money from a browser who sees 5 seconds into the future of any web page?

PTIJ: Why is Haman obsessed with Bose?



Unable to install Go dep


How to resolve depedancy issues with software not obtained from a repositoryUnmet dependencies errorhow to install kjots in ubuntu 16.04Install pyqt4 . Unable to locate packageUnmet dependencies while trying to install Unity Tweak Tooldo-release-upgrade from LTS to newer (but not newest!) LTSUnable to install zfs or zfsutils on 16.04Local repository updateappstreamcli: AppStream system cache was updated, but problems were found: Metadata files have errors: /var/cache/app-info/xmls/fwupd.xml“Secret service operation failed” when trying to run Google Chrome on Ubuntu













0















I am trying to run the command dep ensure on my Ubuntu 16.04, but the system is unable to find the command. When I run sudo apt install dep or any other installation commands, I always get this error when I run dep ensure:



No command 'dep' found, did you mean:
Command 'dp' from package 'speech-tools' (universe)
Command 'iep' from package 'emboss' (universe)
Command 'dwp' from package 'binutils' (main)
Command 'dex' from package 'dex' (universe)
Command 'rep' from package 'rep' (universe)
Command 'delp' from package 'fp-utils-3.0.0' (universe)
Command 'xep' from package 'pvm-examples' (universe)
dep: command not found


Someone tells me I need Ubuntu 18 to run dep, but I would like to know how I can install this on my current Ubuntu. Thanks.










share|improve this question


























    0















    I am trying to run the command dep ensure on my Ubuntu 16.04, but the system is unable to find the command. When I run sudo apt install dep or any other installation commands, I always get this error when I run dep ensure:



    No command 'dep' found, did you mean:
    Command 'dp' from package 'speech-tools' (universe)
    Command 'iep' from package 'emboss' (universe)
    Command 'dwp' from package 'binutils' (main)
    Command 'dex' from package 'dex' (universe)
    Command 'rep' from package 'rep' (universe)
    Command 'delp' from package 'fp-utils-3.0.0' (universe)
    Command 'xep' from package 'pvm-examples' (universe)
    dep: command not found


    Someone tells me I need Ubuntu 18 to run dep, but I would like to know how I can install this on my current Ubuntu. Thanks.










    share|improve this question
























      0












      0








      0








      I am trying to run the command dep ensure on my Ubuntu 16.04, but the system is unable to find the command. When I run sudo apt install dep or any other installation commands, I always get this error when I run dep ensure:



      No command 'dep' found, did you mean:
      Command 'dp' from package 'speech-tools' (universe)
      Command 'iep' from package 'emboss' (universe)
      Command 'dwp' from package 'binutils' (main)
      Command 'dex' from package 'dex' (universe)
      Command 'rep' from package 'rep' (universe)
      Command 'delp' from package 'fp-utils-3.0.0' (universe)
      Command 'xep' from package 'pvm-examples' (universe)
      dep: command not found


      Someone tells me I need Ubuntu 18 to run dep, but I would like to know how I can install this on my current Ubuntu. Thanks.










      share|improve this question














      I am trying to run the command dep ensure on my Ubuntu 16.04, but the system is unable to find the command. When I run sudo apt install dep or any other installation commands, I always get this error when I run dep ensure:



      No command 'dep' found, did you mean:
      Command 'dp' from package 'speech-tools' (universe)
      Command 'iep' from package 'emboss' (universe)
      Command 'dwp' from package 'binutils' (main)
      Command 'dex' from package 'dex' (universe)
      Command 'rep' from package 'rep' (universe)
      Command 'delp' from package 'fp-utils-3.0.0' (universe)
      Command 'xep' from package 'pvm-examples' (universe)
      dep: command not found


      Someone tells me I need Ubuntu 18 to run dep, but I would like to know how I can install this on my current Ubuntu. Thanks.







      16.04 dependencies gnome-terminal golang






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jul 20 '18 at 15:55









      RubyRuby

      32




      32




















          2 Answers
          2






          active

          oldest

          votes


















          1














          To see if a package is available in the repo's you use, type apt-cache search dep or apt-cache search go-dep.



          Go dep is not available in the 16.04 repo's. It is available in the 18.04 repo's, so 'someone' was (at least partially) right.



          Maybe you can install it from Github?






          share|improve this answer


















          • 1





            No luck with Github. Thanks for the response, I know now what the issue is!

            – Ruby
            Jul 20 '18 at 17:35






          • 1





            @Ruby Can you post your own answer to share the solution ?

            – Sergiy Kolodyazhnyy
            Jul 20 '18 at 18:10











          • Seriously @ruby

            – Ethode
            Mar 12 at 21:07


















          1














          Install and usage of go-dep on Ubuntu 16.04:



          Create bin directory inside $GOPATH



          cd $GOPATH
          mkdir bin


          Now download the compiled dep file.



          curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh


          Copy the dep file from $GOPATH/go/bin to the project's root location.



          Execute the dep file with commands



          ./dep [command]


          dep commands:



          Usage: "dep [command]"

          Commands:

          init Set up a new Go project, or migrate an existing one
          status Report the status of the project's dependencies
          ensure Ensure a dependency is safely vendored in the project
          version Show the dep version information
          check Check if imports, Gopkg.toml, and Gopkg.lock are in sync

          Examples:
          dep init set up a new project
          dep ensure install the project's dependencies
          dep ensure -update update the locked versions of all dependencies
          dep ensure -add github.com/pkg/errors add a dependency to the project

          Use "dep help [command]" for more information about a command.





          share|improve this answer








          New contributor




          piLinux is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.



















            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "89"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1057916%2funable-to-install-go-dep%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            To see if a package is available in the repo's you use, type apt-cache search dep or apt-cache search go-dep.



            Go dep is not available in the 16.04 repo's. It is available in the 18.04 repo's, so 'someone' was (at least partially) right.



            Maybe you can install it from Github?






            share|improve this answer


















            • 1





              No luck with Github. Thanks for the response, I know now what the issue is!

              – Ruby
              Jul 20 '18 at 17:35






            • 1





              @Ruby Can you post your own answer to share the solution ?

              – Sergiy Kolodyazhnyy
              Jul 20 '18 at 18:10











            • Seriously @ruby

              – Ethode
              Mar 12 at 21:07















            1














            To see if a package is available in the repo's you use, type apt-cache search dep or apt-cache search go-dep.



            Go dep is not available in the 16.04 repo's. It is available in the 18.04 repo's, so 'someone' was (at least partially) right.



            Maybe you can install it from Github?






            share|improve this answer


















            • 1





              No luck with Github. Thanks for the response, I know now what the issue is!

              – Ruby
              Jul 20 '18 at 17:35






            • 1





              @Ruby Can you post your own answer to share the solution ?

              – Sergiy Kolodyazhnyy
              Jul 20 '18 at 18:10











            • Seriously @ruby

              – Ethode
              Mar 12 at 21:07













            1












            1








            1







            To see if a package is available in the repo's you use, type apt-cache search dep or apt-cache search go-dep.



            Go dep is not available in the 16.04 repo's. It is available in the 18.04 repo's, so 'someone' was (at least partially) right.



            Maybe you can install it from Github?






            share|improve this answer













            To see if a package is available in the repo's you use, type apt-cache search dep or apt-cache search go-dep.



            Go dep is not available in the 16.04 repo's. It is available in the 18.04 repo's, so 'someone' was (at least partially) right.



            Maybe you can install it from Github?







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Jul 20 '18 at 16:12









            ejjlejjl

            15810




            15810







            • 1





              No luck with Github. Thanks for the response, I know now what the issue is!

              – Ruby
              Jul 20 '18 at 17:35






            • 1





              @Ruby Can you post your own answer to share the solution ?

              – Sergiy Kolodyazhnyy
              Jul 20 '18 at 18:10











            • Seriously @ruby

              – Ethode
              Mar 12 at 21:07












            • 1





              No luck with Github. Thanks for the response, I know now what the issue is!

              – Ruby
              Jul 20 '18 at 17:35






            • 1





              @Ruby Can you post your own answer to share the solution ?

              – Sergiy Kolodyazhnyy
              Jul 20 '18 at 18:10











            • Seriously @ruby

              – Ethode
              Mar 12 at 21:07







            1




            1





            No luck with Github. Thanks for the response, I know now what the issue is!

            – Ruby
            Jul 20 '18 at 17:35





            No luck with Github. Thanks for the response, I know now what the issue is!

            – Ruby
            Jul 20 '18 at 17:35




            1




            1





            @Ruby Can you post your own answer to share the solution ?

            – Sergiy Kolodyazhnyy
            Jul 20 '18 at 18:10





            @Ruby Can you post your own answer to share the solution ?

            – Sergiy Kolodyazhnyy
            Jul 20 '18 at 18:10













            Seriously @ruby

            – Ethode
            Mar 12 at 21:07





            Seriously @ruby

            – Ethode
            Mar 12 at 21:07













            1














            Install and usage of go-dep on Ubuntu 16.04:



            Create bin directory inside $GOPATH



            cd $GOPATH
            mkdir bin


            Now download the compiled dep file.



            curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh


            Copy the dep file from $GOPATH/go/bin to the project's root location.



            Execute the dep file with commands



            ./dep [command]


            dep commands:



            Usage: "dep [command]"

            Commands:

            init Set up a new Go project, or migrate an existing one
            status Report the status of the project's dependencies
            ensure Ensure a dependency is safely vendored in the project
            version Show the dep version information
            check Check if imports, Gopkg.toml, and Gopkg.lock are in sync

            Examples:
            dep init set up a new project
            dep ensure install the project's dependencies
            dep ensure -update update the locked versions of all dependencies
            dep ensure -add github.com/pkg/errors add a dependency to the project

            Use "dep help [command]" for more information about a command.





            share|improve this answer








            New contributor




            piLinux is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.
























              1














              Install and usage of go-dep on Ubuntu 16.04:



              Create bin directory inside $GOPATH



              cd $GOPATH
              mkdir bin


              Now download the compiled dep file.



              curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh


              Copy the dep file from $GOPATH/go/bin to the project's root location.



              Execute the dep file with commands



              ./dep [command]


              dep commands:



              Usage: "dep [command]"

              Commands:

              init Set up a new Go project, or migrate an existing one
              status Report the status of the project's dependencies
              ensure Ensure a dependency is safely vendored in the project
              version Show the dep version information
              check Check if imports, Gopkg.toml, and Gopkg.lock are in sync

              Examples:
              dep init set up a new project
              dep ensure install the project's dependencies
              dep ensure -update update the locked versions of all dependencies
              dep ensure -add github.com/pkg/errors add a dependency to the project

              Use "dep help [command]" for more information about a command.





              share|improve this answer








              New contributor




              piLinux is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
              Check out our Code of Conduct.






















                1












                1








                1







                Install and usage of go-dep on Ubuntu 16.04:



                Create bin directory inside $GOPATH



                cd $GOPATH
                mkdir bin


                Now download the compiled dep file.



                curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh


                Copy the dep file from $GOPATH/go/bin to the project's root location.



                Execute the dep file with commands



                ./dep [command]


                dep commands:



                Usage: "dep [command]"

                Commands:

                init Set up a new Go project, or migrate an existing one
                status Report the status of the project's dependencies
                ensure Ensure a dependency is safely vendored in the project
                version Show the dep version information
                check Check if imports, Gopkg.toml, and Gopkg.lock are in sync

                Examples:
                dep init set up a new project
                dep ensure install the project's dependencies
                dep ensure -update update the locked versions of all dependencies
                dep ensure -add github.com/pkg/errors add a dependency to the project

                Use "dep help [command]" for more information about a command.





                share|improve this answer








                New contributor




                piLinux is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.










                Install and usage of go-dep on Ubuntu 16.04:



                Create bin directory inside $GOPATH



                cd $GOPATH
                mkdir bin


                Now download the compiled dep file.



                curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh


                Copy the dep file from $GOPATH/go/bin to the project's root location.



                Execute the dep file with commands



                ./dep [command]


                dep commands:



                Usage: "dep [command]"

                Commands:

                init Set up a new Go project, or migrate an existing one
                status Report the status of the project's dependencies
                ensure Ensure a dependency is safely vendored in the project
                version Show the dep version information
                check Check if imports, Gopkg.toml, and Gopkg.lock are in sync

                Examples:
                dep init set up a new project
                dep ensure install the project's dependencies
                dep ensure -update update the locked versions of all dependencies
                dep ensure -add github.com/pkg/errors add a dependency to the project

                Use "dep help [command]" for more information about a command.






                share|improve this answer








                New contributor




                piLinux is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.









                share|improve this answer



                share|improve this answer






                New contributor




                piLinux is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.









                answered 3 hours ago









                piLinuxpiLinux

                112




                112




                New contributor




                piLinux is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.





                New contributor





                piLinux is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.






                piLinux is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Ask Ubuntu!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1057916%2funable-to-install-go-dep%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Are there any comparative studies done between Ashtavakra Gita and Buddhim?How is it wrong to believe that a self exists, or that it doesn't?Can you criticise or improve Ven. Bodhi's description of MahayanaWas the doctrine of 'Anatta', accepted as doctrine by modern Buddhism, actually taught by the Buddha?Relationship between Buddhism, Hinduism and Yoga?Comparison of Nirvana, Tao and Brahman/AtmaIs there a distinction between “ego identity” and “craving/hating”?Are there many differences between Taoism and Buddhism?Loss of “faith” in buddhismSimilarity between creation in Abrahamic religions and beginning of life in Earth mentioned Agganna Sutta?Are there studies about the difference between meditating in the morning versus in the evening?Can one follow Hinduism and Buddhism at the same time?Are there any prohibitions on participating in other religion's practices?Psychology of 'flow'

                    fallocate: fallocate failed: Text file busy in Ubuntu 17.04? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)defragmenting and increasing performance of old lubuntu system with swap partitionIssue with increasing the root partition from the swapthis /usr/bin/dpkg returned error || ubuntu-16.04, 64bitDefault 17.04 swap file locationHow to Resize Ubuntu 17.04 Zesty Swap file size?Ubuntu freezes from online formsMy Laptop is not starting after upgrade ubuntu 16.04 (Kernel 4.8.0-38 to 04.10.0-36)hcp: ERROR: FALLOCATE FAILED!Not sure my swap is being usedWine 3.0 asking for more virtual free swap

                    Where else does the Shulchan Aruch quote an authority by name?Parashat Metzora+HagadolPesach/PassoverShulchan Aruch UTF-8Anonymous glosses in the Shulchan AruchWhy is the Shulchan Aruch definitive?Siman 32, Kitzur Shulchan Aruch: UntranslatedLitvaks/Yeshivish and Shulchan AruchBuying a Shulchan AruchEnglish version of SHULCHAN ARUCHIs there any place where Shulchan Aruch rules with the Rosh against the Rif and Rambam?Are there practices where Sepharadim do not hold by Shulchan Aruch?5th part of the shulchan aruch