[GH-ISSUE #94] Installation error following the documentation. #222

Open
opened 2026-03-13 23:14:09 +03:00 by kerem · 2 comments
Owner

Originally created by @laurianops on GitHub (May 12, 2024).
Original GitHub issue: https://github.com/alpkeskin/mosint/issues/94

Error installing the application via go:
go install -v github.com/alpkeskin/mosint/v3/cmd/mosint@latest

also error installing the application via docker:
docker build -t mosint .
docker run mosint --help

imcomplement doc
Screenshot from 2024-05-12 07-47-51

Originally created by @laurianops on GitHub (May 12, 2024). Original GitHub issue: https://github.com/alpkeskin/mosint/issues/94 Error installing the application via go: go install -v github.com/alpkeskin/mosint/v3/cmd/mosint@latest also error installing the application via docker: docker build -t mosint . docker run mosint --help imcomplement doc ![Screenshot from 2024-05-12 07-47-51](https://github.com/alpkeskin/mosint/assets/21109538/8734bdf6-936b-47a3-b8cd-b1bc3cf5e8d7)
Author
Owner

@L-A-Marchetti commented on GitHub (Jul 30, 2024):

I followed the doc and it works like a charm for me.

Did you install Go before that? Your command line:

go install -v github.com/alpkeskin/mosint/v3/cmd/mosint@latest

Seems not to work because the installation is verbose. Then you're trying to ls the app, but it couldn't be found because when you use go install, the installation is done in ~/go/bin. So if you would like to ls and see if the installation was successful, you can try:

ls ~/go/bin

Next, you are trying to build a Docker image with a local Dockerfile without having downloaded the repository that contains this Dockerfile. So it's completely normal that it is not working. In conclusion, you are stating that the documentation is incomplete without trying to explain your situation and context to those who are developing this app with dedication. It seems you are not asking for help, but rather asserting that they are wrong and you are right. Feel free to ask if you need further assistance!

<!-- gh-comment-id:2259071213 --> @L-A-Marchetti commented on GitHub (Jul 30, 2024): I followed the doc and it works like a charm for me. Did you install Go before that? Your command line: ```bash go install -v github.com/alpkeskin/mosint/v3/cmd/mosint@latest ``` Seems not to work because the installation is verbose. Then you're trying to ls the app, but it couldn't be found because when you use go install, the installation is done in ~/go/bin. So if you would like to ls and see if the installation was successful, you can try: ```bash ls ~/go/bin ``` Next, you are trying to build a Docker image with a local Dockerfile without having downloaded the repository that contains this Dockerfile. So it's completely normal that it is not working. In conclusion, you are stating that the documentation is incomplete without trying to explain your situation and context to those who are developing this app with dedication. It seems you are not asking for help, but rather asserting that they are wrong and you are right. Feel free to ask if you need further assistance!
Author
Owner

@Serrindipity commented on GitHub (Feb 4, 2025):

Consider checking to make sure that Go binaries are in your $PATH. You can try:

env | grep $PATH

and make sure that wherever your Go binaries are (usually ~/go/bin) is there.

<!-- gh-comment-id:2635205246 --> @Serrindipity commented on GitHub (Feb 4, 2025): Consider checking to make sure that Go binaries are in your `$PATH`. You can try: ``` env | grep $PATH ``` and make sure that wherever your Go binaries are (usually `~/go/bin`) is there.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/mosint#222
No description provided.