MINGW64 bash: wget: comando não encontrado

6

Estou usando o git com o MINGW64 (instalar pelo git) no windows. O MINGW64 é ótimo, mas falta algum comando que raramente usa no windows. Hoje, eu só tenho um capricho para descobrir como usar o wget nele.

Eu encontrei este mingw-w64 / wiki2 / MSYS , ele diz The all-in-one package on the MinGW-w64 download page . tudo em um? uh-huh, mas eu não vejo que haja qualquer maneira de instalar o comando wget ... E este wiki para o mingw32, ele tem um gerenciador de pacotes que pode instalar o wget.

Eu só quero algo como oneclick install, ou visual manager interface (para idiota) para instalar algum comando, sem configuração complexa (a complexidade dificulta a vida ao configurar uma nova máquina dev ...).

    
por Mithril 11.05.2016 / 05:27

1 resposta

3

Este será um artigo útil.

link

The basic idea is that C:\Program Files\Git\mingw64\ is your / directory according to Git Bash (note: depending on how you installed it, the directory might be different. from the start menu, right click on the Git Bash icon and open file location. It might be something like C:\Users\name\AppData\Local\Programs\Git, the mingw64 in this directory is your root). If you go to that directory, you will find the typical linux root folder structure (bin, etc, lib and so on). If you are missing a utility, such as wget, track down a binary for windows and copy the files to the corrisponding directories. Sometimes the windows binary have funny prefixes, so you should rename the exe file to the standard name. Since bin is on the PATH, it will be automatically available to Git Bash.

Não é fácil. Você tem que encontrar, baixar e copiar para qualquer diretório global ferramentas compiladas para o ambiente Windows (* arquivos .exe como wget.exe) Você pode copiá-los para C: \ Arquivos de Programas \ Git \ mingw64 \ bin ou qualquer outro diretório listado no seu variável PATH do sistema ou usuário para ter acesso global a esses arquivos.

    
por 16.11.2016 / 23:26