15/1/2018

pyenv-vritualenv install and venv setup

clone pyenv-virtualenv
git clone https://github.com/pyenv/pyenv-virtualenv
$ brew install pyenv-virtualenv
add following script to your shell profile
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"
check the versions installed
$ pyenv versions
* system (set by /Users/selochanlee/.pyenv/version)
install specific version
# check the installable version list
$ pyenv install --list
...
# install specific version
$ pyenv install 3.6.1
...
# confirm it whether installed or not
$ pyenv versions
...
create virtualenv with pyen and activate it
$ pyenv virtualenv 2.7.13 <venv_name>
...
# activate the installed version
$ pyenv activate <venv_name>
...

python pyenv virtualenv


Previous post
3분 비트코인 개요 비트코인은 분산화된 암호화 화폐이자 결제 시스템이다. 중앙은행 등의 신뢰받는 제3자(TTP: Trusted Third Party)가 필요없이, (신뢰) 프로토콜을 따르는 분산화된 컴퓨터 네트워크에 의해 발행되고, 거래가 검증된다. 인간이 하는 모든 거래는
Next post
PEP8 Main Concept This document gives coding conventions for the Python code comprising the standard library in the main Python distribution. 이 문서는 파이썬 배포판 표준 라이브러리를