How to Setup My Develop Environment
The following settings are based on Ubuntu 14.04 LTS.
How to Setup GitHub Client
Follow this official document to setup GitHub auth key.
How to Setup My rc Files
Follow my dotfile‘s document to setup my .bashrc
, .inputrc
, and .vimrc
.
Where the term, “rc”, originated from could found in here.
How to Setup Python pyenv
Follow this document to install required libraries:
1 | $ sudo apt-get install -y \ |
Then by this document to install pyenv:
1 | $ curl -L https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv-installer | bash |
Install some python versions to pyenv:
1 | $ pyenv install --list |
Create virtual env from installed versions:
1 | $ pyenv virtualenv 2.7.8 myenv-2.7.8 |
Activate & deactivate virtual env:
1 | $ pyenv activate myenv-3.6.0 |
How to Setup Docker
Follow this official document to install Docker CE.
Then be sure to follow the post-install steps to allow non-super-user to use docker.
1 | $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - |