Unrecognized OS type

When installing the SDK, a problem was detected:
dfinity-sdk: unrecognized OS type: MSYS_NT-10.0-19042
Do you have any information about which Windows build is suitable for installation?

We only support Linux and MacOS right now.

From the installation script:

get_architecture() {
    local _ostype _cputype _arch
    _ostype="$(uname -s)"
    _cputype="$(uname -m)"
    if [ "$_ostype" = Darwin ] && [ "$_cputype" = i386 ]; then
        # Darwin `uname -m` lies
        if sysctl hw.optional.x86_64 | grep -q ': 1'; then
            _cputype=x86_64
        fi
    fi
    case "$_ostype" in
        Linux)
            _ostype=linux
            ;;
        Darwin)
            _ostype=darwin
            ;;
        *)
            err "unrecognized OS type: $_ostype"
            ;;

It will slow down the spread of technology radically.
how do you plan to expand the platforms in the future?

Hi Andrey, while it’s not officially supported, if you’re comfortable with Windows Subsystem for Linux that could be an option: Native Windows Support?

2 Likes

how do you plan to expand the platforms in the future?

We have internal plans and road maps for this, but at this time we cannot promise or detail anything unfortunately. We are very aware of Windows market share :slight_smile:

3 Likes

Hope Mac M1 also will be supported: by Rosetta2 or ARM naive. Thanks. :thinking:

When can windows users expect an SDK? is there a timeline for this?

We haven’t committed to additional SDK platform support yet on the roadmap

Thank you @kpeacock
Hopefully, we get to see the windows version more sooner.