Unity
-
Unity ML-Agents 파이썬 환경 설정 안내서프로그래밍 2025. 4. 27. 13:41
Unity ML-Agents 파이썬 환경 설정 안내서아래는 Unity ML-Agents를 위한 파이썬 환경 설치 및 설정 절차를 최신 공식 문서와 실사용 예시를 바탕으로 정리한 가이드입니다.1. Python 및 가상환경 준비권장 Python 버전: 3.10.12 (ML-Agents 최신 버전 기준)^1가상환경 생성 (Anaconda 권장):conda create -n mlagents python=3.10.12conda activate mlagents또는python -m venv ./mlAgentsEnv# Windows: .\mlAgentsEnv\Scripts\activate# macOS/Linux: source ./mlAgentsEnv/bin/activate2. 필수 패키지 설치PyTorch 설치(GPU..
-
유니티 에디터에서 Cursor 에디터 연동 및 필수 종속성 설치 가이드프로그래밍 2025. 3. 3. 22:30
1. Cursor 에디터 설치Cursor 공식 사이트에서 회원가입 후 에디터 다운로드 및 설치2. 필수 패키지 설치 (유니티 패키지 매니저 사용)Git URL로 Cursor 패키지 추가패키지 매니저에서 "Add package from git URL..." 선택아래 URL 입력 후 설치 https://github.com/boxqkrtm/com.unity.ide.cursor Visual Studio Editor 패키지 설치패키지 매니저에서 Visual Studio Editor 검색 후 설치3. 유니티 프로젝트에서 Cursor 연동유니티 실행 → Edit → Preferences → External Tools 이동External Script Editor에서 Cursor 선택4. 개발 환경 최적화 (선택 사항)..