Ubuntu Linux 安装 GCC Compiler
Ubuntu Linux 安裝 GCC Compiler
Auto-Configuration Error: Cannot find gcc or CC; either correct your path or set the CC environment variable1. Installing GCC Compiler on Ubuntu
The default Ubuntu repositories contain a meta-package named build-essential that contains the GCC compiler and a lot of libraries and other utilities required for compiling software.
默認的 Ubuntu repository 包含一個名為 build-essential 的 meta-package,其中包含 GCC 編譯器和許多編譯軟件所需的庫和其他實用程序。
(1) Start by updating the packages list:
sudo apt update(2) Install the build-essential package by typing:
sudo apt install build-essentialThe command installs a bunch of new packages including gcc, g++ and make. You may also want to install the manual pages about using GNU/Linux for development:
sudo apt-get install manpages-dev2. 查看 GCC 版本
The default version of GCC available in the Ubuntu 18.04 repositories is 7.5.0:
(base) yongqiang@yongqiang:~/tensorflow_work/tensorflow$ which gcc /usr/bin/gcc (base) yongqiang@yongqiang:~/tensorflow_work/tensorflow$ (base) yongqiang@yongqiang:~/tensorflow_work/tensorflow$ gcc --version gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 Copyright (C) 2017 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.(base) yongqiang@yongqiang:~/tensorflow_work/tensorflow$References
https://linuxize.com/post/how-to-install-gcc-compiler-on-ubuntu-18-04/
總結
以上是生活随笔為你收集整理的Ubuntu Linux 安装 GCC Compiler的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: web前端面经
- 下一篇: 想学linux需要的电脑配置相关