ubuntu安装软件汇总和安装时所遇到的问题

所需软件


常用软件列表

  1. Pycharm python开发工具
  2. DataGrip 数据库连接工具
  3. Sublime 文本编辑工具
  • sublime2/3安装地址
  • 解决sublime3中文无法输入问题
  1. Charles 花瓶代理工具
  2. haroopd markdown编辑工具 下载地址
  3. Indicator Stickynotes 好用的便签工具 下载地址
  4. DeepinScrot 类似qq截图 一款超级好用的截图软件
  5. whatever 一款linux桌面版的印象笔记包装ubuntu印象笔记
  6. FIleZilla一款好用的开源ftp上传工具
  7. 有道词典,1.1.0目前仅支持14.10版本以上,14.04版本下载1.0.2版本[32/64版本deb包](http://codown.youdao.com/cidian/linux/youdao-dict_1.0.2~ubuntu_i386.deb
    http://codown.youdao.com/cidian/linux/youdao-dict_1.0.2~ubuntu_amd64.deb)
  8. neofetch一款查看系统信息的小公举 neofetch下载安装
  9. supervisor 一款python编写的进程管理工具,用来管理项目和脚本自动重启教程地址

问题汇总

1、安装FileZilla这个ftp工具的时候,会出现c++版本低的问题,解决方案:

参考地址 stackoverflow

sudo apt-add-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install gcc-4.9 g++-4.9

2、在安装M2Crypto 的时候,运行的时候会报错,需要安装cryptography

参考地址 How to install cryptography on ubuntu?

For Debian and Ubuntu, the following command will ensure that the required dependencies are installed:
$ sudo apt-get install build-essential libssl-dev libffi-dev python-dev
For Fedora and RHEL-derivatives, the following command will ensure that the required dependencies are installed:
$ sudo yum install gcc libffi-devel python-devel openssl-devel
You should now be able to build and install cryptography with the usual
$ pip install cryptography

3、安装oh my zsh的时候,连接远程服务器终端会出现中文乱码,解决:

  1. cd ~ && vim .zshrc
  1. 在末尾部分添加如下代码:
    export LC_ALL=en_US.UTF-8
    export LANG=en_US.UTF-8
  2. source .zshrc

4、可以选择替换为阿里云的源,下载速度会快一点

  1. sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup #备份当前也就是默认官方的源列表
  1. sudo gedit /etc/apt/sources.list #修改sources.list文件中源的列表,删除全部内容,替换为国内源地址。 保存编辑好的文件。
  2. sudo apt-get update # 更新数据

aliyun源地址

deb http://mirrors.aliyun.com/ubuntu/ trusty main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu/ trusty-backports main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu/ trusty-proposed main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu/ trusty-security main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu/ trusty-updates main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ trusty main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-backports main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-proposed main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-security main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-updates main multiverse restricted universe

你可能感兴趣的:(ubuntu安装软件汇总和安装时所遇到的问题)