Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- ELASTIC
- PlayBook
- 보안양파
- hardening
- macos
- pfsense
- freebsd
- elastic stack
- Elasticsearch
- Kibana
- ansible
- G-suite
- Kibana server is not ready yet
- XCP-ng
- 로그인불가
- Windows
- miniconda
- proxycfg
- 한글가이드
- ssh key 배포
- bash
- Proxy
- application security
- docker
- GitLab
- endpoint security
- centos 8
- xe guest utilities
- x-pack
Archives
- Today
- Total
선 밖에 선 자유인
Miniconda 를 이용한 가상환경 설정 본문
1. miniconda 다운로드
https://docs.conda.io/en/latest/miniconda.html
$ wget https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
2. 설치
$ bash Miniconda3-latest-Linux-x86_64.sh
3. ~/.zshrc 에 path 추가
export PATH=$HOME/miniconda3/bin:$PATH
4. 설치 확인
$ source ~/.bash_profile
$ conda list
6. 가상 환경 만들기
$ conda create -n <name> python=<version>
ex) python 3.7 flask 웹 프로젝트
$ conda create -n web_project python=3.7 flask
7. 개발 환경 활성화
$ source activate web_project
8. 개발 환경 비활성화
$ source deactivate
Comments