-
Thank you for the nice work! I am stuck when running the released prebuilt binary file with the error I thought the exec might not support my arch Some other solutions from #40 and #34 also do not work to me. The prebuilt of V0.3.5.1 (the final version before rewriting with Cargo) throws the same error:
Do you plan to release a prebuilt for Mac M1 based on Cargo? Or do you have any suggestion to launch steamgaurd-cli using |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
v0.3 is wildly out of date, and is completely incompatible with Steam's current APIs. It would still generate 2fa codes, but that's about it, no mobile confirmations. I currently don't publish binaries for mac because I don't have a device to test on, but it should be easy enough for you to compile it yourself. You can do this by installing the rust toolchain, and running |
Beta Was this translation helpful? Give feedback.
Thank you for the reply!
Yes, I just retried to compile the current commit using Cargo. I fixed my Cargo's network error by adding these lines to the file
~/.cargo/config.toml
referring a reddit post.`
[source.crates-io]
index = "https://github.com/rust-lang/crates.io-index" # I set the source to the official github index
[http]
proxy = "" # leaving this as a blank string resets proxy to default
`
I thought Ive added a proxy setting somewhere and this config helps me to remove it when running Cargo. After this, I can successfully run
cargo build --release
and directly get&run the binary file in Mac M1.