ipfs / ipget

Retrieve files over IPFS and save them locally.
MIT License
388 stars 54 forks source link

How and where do I run "$ go install github.com/ipfs/ipget@latest" #148

Closed willow0217 closed 8 months ago

willow0217 commented 8 months ago

Hi, I'm new to all of this stuff. I've read the instructions on how to install ipget, but I do not understand how and where do I run $ go install github.com/ipfs/ipget@latest. I've tried to run it in powershell and also using command prompt, but it doesn't work and I'm pretty sure I'm not supposed to run it there, but I also have no idea where else I'm supposed to run it. My operating system is windows, so I can't use brew. I tried chocolatey but it's not in their sources. I also don't understand how and where I'm supposed to run commands like $ ipget QmQ2r6iMNpky5f1m4cnm3Yqw8VSvjuKpTcK1X7dBR1LkJF/cat.gif -o nyan.gif if I do get ipget installed. I have already downloaded a zip file from IPFS Distributions, it contains a file names Install and another named ipget and I tried running both but nothing happens. If someone knows, please help. Thank you.

welcome[bot] commented 8 months ago

Thank you for submitting your first issue to this repository! A maintainer will be here shortly to triage and review. In the meantime, please double-check that you have provided all the necessary information to make this process easy! Any information that can help save additional round trips is useful! We currently aim to give initial feedback within two business days. If this does not happen, feel free to leave a comment. Please keep an eye on how this issue will be labeled, as labels give an overview of priorities, assignments and additional actions requested by the maintainers:

Finally, remember to use https://discuss.ipfs.io if you just need general support.

Stebalien commented 8 months ago

I highly suggest you install something like ipfs-desktop instead. This is a command-line tool and expects general familiarity with the command-line.

However, here are a couple of suggestions:

  1. Remove the leading $. That just indicates "this is a command" for documentation purposes. I.e., you'll want to run go install ..., not $ go install ....
  2. You'll need the go toolchain installed for this to work.
  3. You should be able to invoke these tools from ether CMD or PowerShell.

Unfortunately, that's really all the help I can give you here.