본문 바로가기
카테고리 없음

[Airsim Project] MAC M1에서 Airsim 설치하기

by 우직한 사람 2023. 9. 3.
반응형

Brew 설치

Airsim 패키지를 설치하기 전에 먼저 brew를 설치한다.

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

 

Next steps

(echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> /Users/jeonsion/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"

 

result

 

정상적으로 brew가 설치된 것을 알 수 있다.

 

 

Airsim Install

Airsim 패키지는 아래 페이지를 참고한다

https://microsoft.github.io/AirSim/build_macos/

 

Build on macOS - AirSim

Build AirSim on macOS Only macOS Catalina (10.15) has currently been tested. Theoretically, AirSim should work on higher macOS versions and Apple Silicon hardware, but this path is not offically supported. We've two options - you can either build inside do

microsoft.github.io

 설치 방법은 비교적 간단하다.

 

# go to the folder where you clone GitHub projects
git clone https://github.com/Microsoft/AirSim.git
cd AirSim

./setup.sh
./build.sh
# use ./build.sh --debug to build in debug mode

 

cd /Users/jeonsion/AirSim/Unreal/Environments
./GenerateProjectFiles.sh /Users/Shared/Epic\ Games/UE_5.2

위 명령어를 실행하면, Airsim/Unreal/Environments/Blocks 워크 스페이스가 생긴다.

Blocks를 프로젝트가 위치할 디렉터리로 설정한 후, 프로젝트 이름을 지정한다. 

아래왁 같이 로딩이 되면

결과

정상적으로 실행되는 것을 알 수 있다.

참고

https://jjuke-brain.tistory.com/entry/%EC%96%B8%EB%A6%AC%EC%96%BC-%EC%97%94%EC%A7%84%EC%9D%84-%EC%82%AC%EC%9A%A9%ED%95%98%EC%97%AC-AirSim-%EB%B9%8C%EB%93%9C%ED%95%98%EA%B8%B0-on-Mac

반응형