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 |
Tags
- Elasticsearch
- docker
- hardening
- application security
- 한글가이드
- endpoint security
- 로그인불가
- ELASTIC
- pfsense
- elastic stack
- GitLab
- Kibana
- bash
- XCP-ng
- miniconda
- ssh key 배포
- PlayBook
- G-suite
- 보안양파
- xe guest utilities
- Kibana server is not ready yet
- centos 8
- proxycfg
- macos
- Proxy
- x-pack
- freebsd
- ansible
- Windows
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