mirror of
https://github.com/HappyTanuki/BumbleCee.git
synced 2025-12-18 13:13:28 +00:00
스킵 구현
This commit is contained in:
23
DPP-master/docpages/install/install-linux-deb.md
Normal file
23
DPP-master/docpages/install/install-linux-deb.md
Normal file
@@ -0,0 +1,23 @@
|
||||
\page install-linux-deb Installing from a .deb file (Debian, Ubuntu, and Derivatives)
|
||||
|
||||
To install D++ on a system from `.deb` using `dpkg` (as root):
|
||||
|
||||
```bash
|
||||
apt install wget
|
||||
wget -O dpp.deb https://dl.dpp.dev/
|
||||
dpkg -i dpp.deb
|
||||
```
|
||||
|
||||
This will do the following three things:
|
||||
|
||||
- Install `wget`
|
||||
- Use `wget` to download the latest release of D++ to `dpp.deb`
|
||||
- Install `dpp.deb` to `/usr`
|
||||
|
||||
You will now be able to use D++ by including its library on the command line:
|
||||
|
||||
```bash
|
||||
g++ mybot.cpp -o mybot -ldpp
|
||||
```
|
||||
|
||||
\include{doc} install_prebuilt_footer.dox
|
||||
Reference in New Issue
Block a user