본문 바로가기
DSP, MCU/젯슨

JetPack 5.x에 VSCode 설치

by eteo 2024. 5. 22.

 

 

 

 

처음엔 그냥 최신버전을 다운받아 설치했는데 아무리 해도 실행이 안되길래 뭐지 했는데 포럼에서 옛날 버전은 잘 실행된다는 글을 찾았다.

 

 

 

 

https://forums.developer.nvidia.com/t/vs-code-can-t-launch-with-jetpack-5-0/213980/10

 

VS code can’t launch with JetPack 5.0

launch using code --verbose to see if there is any distinctive error nvidia probably broke sandboxing with chromium on this release

forums.developer.nvidia.com

 

 

 

다운로드 링크 :

https://code.visualstudio.com/Download

 

 

Get Previous Versions 클릭

 

 

 

 

 

다운로드 타입에서 Linux Arm64 debian을 찾고 {version} 에 원하는 버전을 입력해 다운받으면 된다.

 

 

 

wget 명령어로 설치한다. 1.65.2 버전으로 설치해서 잘 실행되는 걸 확인했다.

 

cd ~
wget https://update.code.visualstudio.com/1.65.2/linux-deb-arm64/stable -O vscode_install.deb
dpkg -i vscode_install.deb

 

 

code .