赞
踩
目录
今天在电脑上成功配置了Clion的C/C++编译环境,在这里写一下详细步骤,以便解决以后的重新配置问题。
首先在官网上下载Clion:CLion: A Cross-Platform IDE for C and C++ by JetBrains
下载完成之后,会有一个界面让你输入许可证的账号和密码或者是激活码,这里你可以直接在某宝上买一个激活码或直接购买成品账号,这里就不说了。
进入到clion之后点击右上角的齿轮按钮点击Plugins,进入到插件页面,在搜索框输入Chinese,下载安装中文语言补丁包,并重启Clion:
加载完语言包后我们发现这时写出来的C/C++代码是无法运行并编译的,这时我们开始正式配置C/C++的开发环境。
我们打开mac的终端,输入命令:
Xcode-select -install
开始安装第一个插件,如果终端中显示下面的命令,则代表已经成功下载并安装:
接下来我们开始安装第二个插件brew,输入命令:
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
成功输入命令后,你将会看到如下界面:
此时我们选择序号2对应的清华大学下载源,并开始对brew插件的安装:
当出现红色圆圈所圈中的区域时,代表brew的前期配置已经成功:
此时我们配置国内源,当出现以下界面时,代表已经安装成功:
接下来我们安装第三个插件,在终端中输入命令:
brew install gcc
这里有一个小插曲,就是在我输入命令之后,安装过程中出现了报错,如下图中红圈所示:
终端中的报错为:
- fatal: not in a git directory
- Error: Command failed with exit 128: git
此时我们再次在终端中输入命令:
brew -v
终端中的提示如下:
- fatal: not in a git directory
- Error: Command failed with exit 128: git
- pg.zeng@cengduodeMacBook-Pro ~ % brew -v
- Homebrew 3.6.2-10-ga6aab4b
- fatal: detected dubious ownership in repository at '/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core'
- To add an exception for this directory, call:
-
- git config --global --add safe.directory /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core
- Homebrew/homebrew-core (no Git repository)
- fatal: detected dubious ownership in repository at '/usr/local/Homebrew/Library/Taps/homebrew/homebrew-cask'
- To add an exception for this directory, call:
-
- git config --global --add safe.directory /usr/local/Homebrew/Library/Taps/homebrew/homebrew-cask
- Homebrew/homebrew-cask (no Git repository)
这里这一大串命令的大体意思是让我们为此目录安装两个扩展:分别是:
git config --global --add safe.directory /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core
git config --global --add safe.directory /usr/local/Homebrew/Library/Taps/homebrew/homebrew-cask
现在我们分别输入这两个命令:
我们再次输入命令,安装gcc:
brew install gcc
但是此时又出现了第二个问题:
- ==> Installing dependencies for gcc: gmp, isl, mpfr, libmpc, lz4, xz and zstd
- ==> Installing gcc dependency: gmp
- ==> Pouring gmp-6.2.1_1.monterey.bottle.tar.gz
- 声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/315534推荐阅读
相关标签
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。