mogak-python / SpotTing

Simply inform meeting place to your teammates.
0 stars 0 forks source link

SpotTing 프로젝트 셋팅하기. #1

Open hhhyeong opened 5 years ago

hhhyeong commented 5 years ago

<앞으로 할 일> 슬랙봇 만들기 위한 토큰 slack에서 발급받기

<참고 링크>

hhhyeong commented 5 years ago

pyenv, pyenv-virtualenv, virtuaenv 의 차이

image

image

# 설치하기
$ curl -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash

# pyenv관련설정하기
리눅스 : vim ~/.zshrc

export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"

# 기본 명령어
# 설치할 수 있는 파이썬 버전들
$ pyenv install --list

# 특정 버전 설치
$ pyenv install <version name>

# 특정 버전 삭제
$ pyenv uninstall <version name>

# 설치된 파이썬 버전들
$ pyenv versions

참고링크 http://taewan.kim/post/python_virtual_env/ https://whatisthenext.tistory.com/136