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
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
add a comment |
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
add a comment |
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
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
16.04 dependencies gnome-terminal golang
asked Jul 20 '18 at 15:55
RubyRuby
32
32
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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?
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
add a comment |
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.
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.
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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?
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
add a comment |
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?
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
add a comment |
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?
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?
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
add a comment |
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
add a comment |
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.
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.
add a comment |
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.
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.
add a comment |
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.
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.
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.
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.
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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