Development environment installation steps after installing Deepin on VirtualBox

Description: 
The Deepin version is 2014.3, and the 
installation package name is: deepin_2014.3_amd64.iso 
The virtualization software used is VirtualBox VM 5.0 

installation steps

Operating system related

  1. If on a virtual machine, you need to install enhancements for better compatibility with the system
  2. To update the system, run the command: sudo apt-get update
 

Development environment related

  1. Install Git:sudo apt-get install git
  2. Install the Ruby environment 
    • Install ruby: sudo apt-get install ruby
    • Install capistrano: sudo gem install capistrano
  3. Install MySQL: 
    sudo apt-get install mysql-server mysql-client libmysqlclient-dev 
    Note:  During the period, you are prompted to set the root password of mysql
  4. Install the Python environment: 
    • Install pip command: 
      sudo apt-get install python-pip python-dev 
      sudo pip install --upgrade pip
    • Install Django: sudo pip install django
    • Install the Mysql library: sudo pip install MySQL-python
  5. Install Pycharm: 
    • Install the java environment:sudo apt-get install openjdk-7-jdk
    • Download PyCharm Professional Edition:https://www.jetbrains.com/pycharm/download/
    • Unzip and install, enter the download directory and run: 
      tar -zxvf pycharm-professional-4.5.3.tar.gz
    • Move the unpacked Pycharm: 
      sudo mv pycharm-4.5.3 /opt/
    • Start, enter /opt/pycharm-4.5.3/bin, run  ./pycharm.sh , remember to let the icon reside on the taskbar after startup.
    • Enter the registration code, refer to:  http://my.oschina.net/backtract/blog/360666
  6. Add SSH-Key to version control tools such as Gitlab: 
    • Generate SSH Key:  ssh-keygen then hit enter three times in a row
    • Running this command adds the result to the  SSH Keys  location in the version control repository: 
      cat ~/.ssh/id_rsa.pub

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326337409&siteId=291194637