Ubuntu16.04安装clion

下载地址:
https://download.jetbrains.com/cpp/CLion-2017.1.1.tar.gz

一,检查和更新你的系统
1.ubuntu命令终端下键入

sudo apt-get update

2.检测并更新gcc和g++编译环境

sudo apt-get install build-essential

3.设置环境变量

export CC=/usr/bin/gcc
export CXX=/usr/bin/g++

二,安装clion
1.根据上面给出的下载链接,下载CLion至目录~/Downloads下,拆包并进入bin

cd ~/Downloads
tar -xzvf CLion-2017.1.1.tar.gz
cd clion-2017.1.1/bin

2.运行./clion.sh

./clion.sh

选中“Do not import settings”
Ubuntu16.04安装clion_第1张图片
3.下一步是需要激活,我们选中“Activation code”使用激活码激活
下面登入网站 idea.lanyus.com ,进行注册激活码
Ubuntu16.04安装clion_第2张图片4.将“0.0.0.0 account.jetbrains.com”添加到hosts文件中
打开hosts文件

sudo gedit /etc/hosts

将“0.0.0.0 account.jetbrains.com”添加到hosts文件中制定位置中,如图所示并保存
Ubuntu16.04安装clion_第3张图片回到网站 idea.lanyus.com,点击获取注册码
将获得的激活码填写到CLion
勾选中 For all usrer

你可能感兴趣的:(软件安装)