Working with Ubuntu (2)

这个系列描述如何在 Ubuntu 中安装一些常用软件。

VScode

VSCode 的安装非常简单

1
2
$ sudo snap install --classic code
code a622c65b from Visual Studio Code (vscode✓) installed

打开

1
$ code

Sublime Text 3

Install the GPG key:

1
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -

Ensure apt is set up to work with https sources:

1
sudo apt-get install apt-transport-https

Select the channel to use:

Stable

1
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list

Dev

1
echo "deb https://download.sublimetext.com/ apt/dev/" | sudo tee /etc/apt/sources.list.d/sublime-text.list

Update apt sources and install Sublime Text

1
2
sudo apt-get update
sudo apt-get install sublime-text

Open

1
$ subl

VMware Workstation Pro

下载安装包,VMware Workstation Pro Download

安装:

1
2
$ chmod +x VMware-Workstation-Full-15.5.1-15018445.x86_64.bundle 
$ ./VMware-Workstation-Full-15.5.1-15018445.x86_64.bundle 

在 Ubuntu 的 菜单中点击 VMware 的图标启动,这时可能汇报错:

1
Build environment error! ...

你需要安装依赖包:

1
$ sudo apt install gcc g++ make

license for VMware Workstation Pro 15,任选一个输入:

go ahead

miniconda

下载安装包,miniconda3

安装:

1
$ sh Miniconda3-latest-Linux-x86_64.sh

其中选择如下:

1
2
3
4
5
Do you accept the license terms? [yes|no]
[no] >>> yes
Do you wish the installer to initialize Miniconda3
by running conda init? [yes|no]
[no] >>> yes

使能。重启终端,或者使用命令:

1
$ source ~/.bashrc 
© 2019 - 2021 · Kip Jiang · Theme Simpleness Powered by Hugo ·