ubuntu环境搭建

Posted qcuser

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu环境搭建相关的知识,希望对你有一定的参考价值。

1. 激活root用户:

  sudo passwd root

2. 安装ssh服务:

  sudo apt-get install openssh-server

  开启服务:/etc/init.d/ssh start

  关闭服务:/etc/init.d/ssh stop

  重启服务:/etc/init.d/ssh restar

3.  安装pip:

  wget https://bootstrap.pypa.io/get-pip.py --no-check-certificate
  sudo python get-pip.py

4.  安装virtualenv和virtualenvwrapper

  sudo apt-get update

  sudo apt-get install python-virtualenv

  sudo easy_install virtualenvwrapper

5. 安装mysql

  sudo apt-get install mysql-server

  sudo apt-get install mysql-client

  sudo apt-get install libmysqlclient-dev

  登陆: mysql -u root -p


以上是关于ubuntu环境搭建的主要内容,如果未能解决你的问题,请参考以下文章

如何在ubuntu中搭建交叉编译环境toolchain

Ubuntu下ASIC/FPGA环境搭建

Ubuntu16.04搭建LAMP开发环境

ubuntu virtualenv虚拟环境搭建

superset开发环境搭建(ubuntu+pycharm)

Python Pytorch开发环境搭建(Windows和Ubuntu)