mirror of
https://github.com/HappyTanuki/BumbleCee.git
synced 2025-12-18 21:23:29 +00:00
스킵 구현
This commit is contained in:
23
DPP-master/docpages/install/install-linux-rpm.md
Normal file
23
DPP-master/docpages/install/install-linux-rpm.md
Normal file
@@ -0,0 +1,23 @@
|
||||
\page install-linux-rpm Installing from a .rpm file (RedHat, CentOS and Derivatives)
|
||||
|
||||
To install D++ on a system from `.rpm` using `yum` (as root):
|
||||
|
||||
```bash
|
||||
yum install wget
|
||||
wget -O dpp.rpm https://dl.dpp.dev/latest/linux-x64/rpm
|
||||
yum localinstall dpp.rpm
|
||||
```
|
||||
|
||||
This will do the following three things:
|
||||
|
||||
- Install `wget`
|
||||
- Use `wget` to download the latest release of D++ to `dpp.rpm`
|
||||
- Install `dpp.rpm` 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