-
- Sempre buscar pela documentação oficial, este documento é um tutorial
que pode não te atender conforme tenha novas atualizações do processo de instalação. - As referências estão no final do documento.
- Sempre buscar pela documentação oficial, este documento é um tutorial
-
Windows 10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| func openbrowser(url string) { | |
| var err error | |
| switch runtime.GOOS { | |
| case "linux": | |
| err = exec.Command("xdg-open", url).Start() | |
| case "windows": | |
| err = exec.Command("rundll32", "url.dll,FileProtocolHandler", url).Start() | |
| case "darwin": | |
| err = exec.Command("open", url).Start() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| {"name": "nfe-to-pdf", "language": "typescript"}, | |
| {"name": "image-to-text", "language": "typescript"}, | |
| {"name": "files", "language": "typescript"}, | |
| {"name": "icms", "language": "typescript"}, | |
| {"name": "sql", "language": "typescript"}, | |
| {"name": "qr-code", "language": "typescript"} | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo tar -zxvf ~/Downloads/android-studio-*-linux.tar.gz | |
| sudo mv ~/Downloads/android-studio /opt/ | |
| sudo ln -sf /opt/android-studio/bin/studio.sh /bin/android-studio | |
| sudo nano /usr/share/applications/android-studio.desktop | |
| [Desktop Entry] | |
| Version=1.0 |
OlderNewer