Skip to content

Update dev tool installation in FAQ.md #62

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions source/user/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,10 @@ To upgrade GhostBSD, use the Update Station. It was made to upgrade GhostBSD pro

### Why can't I compile code or ports on GhostBSD?

GhostBSD does not come with **os-generic-userland-devtools** preinstall anymore. To enable the capability to compile code and ports install **os-generic-userland-devtools**.
GhostBSD no longer comes with development tools preinstalled. To enable the capability to compile code and ports, install the GhostBSD*-dev packages. These packages include essential build tools, compilers, and libraries necessary for software development. Use the following command to install them:

pkg install ghostbsd-devel

```
sudo pkg install -g 'GhostBSD*-dev'
```
sudo pkg install os-generic-userland-devtools
```