I use the Macbook in apple silicon. and pico-download module not support target_arch = aarch64 so that there is no matching library can be downloaded for my computer.
#[cfg(all(target_os = "windows", target_arch = "x86_64"))]
And i checked the download link for libraries on AWS s3 (EX: https://pico-drivers.s3.eu-west-2.amazonaws.com/macos/x86_64/libps5000a.dylib). and there is no link like https://pico-drivers.s3.eu-west-2.amazonaws.com/macos/aarch64/libps5000a.dylib for aarch64.
Not sure what can i do properly for this case.
Does anyone have any idea? Thanks!
I use the Macbook in apple silicon. and pico-download module not support target_arch =
aarch64so that there is no matching library can be downloaded for my computer.#[cfg(all(target_os = "windows", target_arch = "x86_64"))]And i checked the download link for libraries on AWS s3 (EX: https://pico-drivers.s3.eu-west-2.amazonaws.com/macos/x86_64/libps5000a.dylib). and there is no link like
https://pico-drivers.s3.eu-west-2.amazonaws.com/macos/aarch64/libps5000a.dylibfor aarch64.Not sure what can i do properly for this case.
Does anyone have any idea? Thanks!