mirror of
https://github.com/alpkeskin/mosint.git
synced 2026-04-26 03:25:57 +03:00
[GH-ISSUE #94] Installation error following the documentation. #222
Labels
No labels
bug
duplicate
enhancement
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/mosint#222
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
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

@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:
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:
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!
@Serrindipity commented on GitHub (Feb 4, 2025):
Consider checking to make sure that Go binaries are in your
$PATH. You can try:and make sure that wherever your Go binaries are (usually
~/go/bin) is there.