전문 인터넷 중독자 • 게임 애호가 • 기술 창작자
전문 인터넷 중독자 • 게임 애호가 • 기술 창작자

Cloud 9 IDE에 Dart SDK를 설치하는 방법

Cloud 9 IDE에 Dart SDK를 설치하는 방법!
이 페이지는 여러분의 편의를 위해 열정적인 AI 인턴들이 영어에서 번역한 것입니다. 아직 학습 중이므로 몇 가지 오류가 있을 수 있습니다. 가장 정확한 정보는 영어 버전을 참조하세요.
블로그 Cloud 9 IDE에 Dart SDK를 설치하는 방법

이 블로그 게시물은 2015년 7월에 게시되었으므로, 읽는 시점에 따라 일부 내용이 최신이 아닐 수 있습니다. 안타깝게도 정보의 정확성을 보장하기 위해 게시물을 항상 최신 상태로 유지하는 것은 어렵습니다.

    Cloud9 is a pretty cool cloud based IDE. Even though it does not support Dart code formatting, you can still develop and run Dart server applications in the IDE by downloading and installing the Dart SDK.

    Download the SDK

    The first thing you need to do is to figure out is if you are on a 32 or a 64 bit architecture. Most likely you are on a 64 bit, but let's make sure. To do that you can type in the command:
    uname –a uname command
    Here we can see are on a 64 bit machine, so we need to download the 64 bit version of the Dart SDK for Linux on their archive page:
    Finding the SDK URL
    Copy the URL, as we are going to use it later. In my case, at the time I published this blog post, the URL is:
    Open up a terminal in the Cloud 9 IDE and go to your home directory:
    cd ~
    and download the SDK with wget:
    wget https://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip Downloaded with wget
    After it has been downloaded type ls and you should see it:
    SDK downloaded

    Configure as global command

    If you read the Dart SDK page it tells us how to make Dart as a global command using the export command:
    Dark SDK export instructions
    So in our case, the full syntax will be
    export PATH=${PATH}:~/dartsdk-1-11-1/dart-sdk/bin/
    We can check if was added successful by typing
    echo $PATH Echo path output

    Testing it all

    Now if we return to our workspace directory (cd ~/workspace/) we can see that we have access to Dart by simple typing dart.
    Dart help

    Special Agent Squeaky님이 작성했습니다. 최초 게시일 2015-07-31. 최종 업데이트일 2015-07-31.

    📺 스퀴키의 최신 영상을 시청하세요!

    라이브 스트림에 간단한 실시간 자막을 추가하는 방법