SymGo is a symbolic mathematics library for the Go programming language, inspired by the renowned Python library, SymPy.
Hello, I encountered a module path mismatch issue when trying to use `symgo` in a Go project. The `go.mod` file in this repository declares the module path as `symgo`, but the repository is hosted at `github.com/flyyuan/symgo`. When running `go get github.com/flyyuan/symgo`, the following error occurs: ``` go: github.com/flyyuan/symgo@upgrade requires symgo: parsing go.mod: module declares its path as: symgo but was required as: github.com/flyyuan/symgo ``` To resolve this, the `module` directive in the `go.mod` file should be updated to: ```go module github.com/flyyuan/symgo ``` This change will ensure the module path matches the repository location and allows Go to fetch the module correctly. Thank you for your attention, and let me know if further clarification is needed!
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be still under discussion. The issue was opened by e-s-c-h-e-r and has received 0 comments.