DSS 아카데미 설치/삭제하기
하드웨어 요구 사항
최소 요구 사항
- 운영 체제: Windows 11 64비트
- 프로세서: Intel Core i7-12700K / AMD Ryzen 7 5800X 이상
- 메모리: 32GB RAM 이상
- 그래픽 카드: NVIDIA GeForce RTX 3060 Ti / AMD Radeon RX 6700 XT 이상
- 저장 공간: NVMe SSD 200GB 이상
권장 요구 사항
- 운영 체제 (OS): Windows 11 64 비트
- 프로세서 (CPU): Intel Core i9-13900K / AMD Ryzen 9 7950X 이상
- 메모리 (RAM): 64GB DDR5 6000MHz 이상
- 그래픽 카드 (GPU): NVIDIA GeForce RTX 4090 / AMD Radeon RX 7900 XTX
- 저장 공간 (Storage): NVMe Gen4 SSD 1TB 이상 (게임 전용)
윈도우에 설치하기
이 문서에는 Microsoft Windows 운영체제에서 DSS 아카데미를 설치하는 방법을 설명합니다. DSS 아카데미의 윈도우 버전 설치 파일은 DSS 아카데미 공식 다운로드 페이지에서 다운로드 받을 수 있습니다.
DSS for Academy 설치 안내 문서
Getting Started
Get started by creating a new site.
Or try Docusaurus immediately with docusaurus.new.
What you'll need
- Node.js version 18.0 or above:
- When installing Node.js, you are recommended to check all checkboxes related to dependencies.
Generate a new site
Generate a new Docusaurus site using the classic template.
The classic template will automatically be added to your project after you run the command:
npm init docusaurus@latest my-website classic
You can type this command into Command Prompt, Powershell, Terminal, or any other integrated terminal of your code editor.
The command also installs all necessary dependencies you need to run Docusaurus.
Start your site
Run the development server:
cd my-website
npm run start
The cd command changes the directory you're working with. In order to work with your newly created Docusaurus site, you'll need to navigate the terminal there.
The npm run start command builds your website locally and serves it through a development server, ready for you to view at http://localhost:3000/.
Open docs/intro.md (this page) and edit some lines: the site reloads automatically and displays your changes.