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
- normalization
- remove outliers
- non parametic softmax
- scowl
- MRI
- 자료구조
- rest-api
- straightup
- Actor-Critic
- resample
- freebooze
- Policy Gradient
- sample rows
- objective functions for machine learning
- sidleup
- 3d medical image
- domain adaptation
- noise contrast estimation
- thresholding
- pulloff
- REINFORCE
- shadowing
- loss functions
- fastapi
- Excel
- clip intensity values
- Inorder Traversal
- model-free control
- Knowledge Distillation
- checkitout
Archives
- Today
- Total
Let's Run Jinyeah
[Python] 가상환경 생성 및 활성화 본문
1. conda 활용
#생성
conda create -n <가상환경이름> python=3.8
#활성화
conda activate <가상환경이름>
#가상환경 확인
conda env list
#가상환경 제거
conda remove -n 가상환경이름 --all
2. pip 활용
#생성
virtualenv --python=/usr/bin/python3.6 <path/to/new/virtualenv/>
#활성화
source <path/to/new/virtualenv>/bin/activate
#제거
rm -r <path/to/new/virtualenv>
<Example>
virtualenv -p python3 myenv
source myenv/bin/activate
rm -r myenv'Programming > Python' 카테고리의 다른 글
| [Python] Read/Write csv file (csv, Pandas) (0) | 2022.05.25 |
|---|---|
| [Python] Modify DICOM image and save as DICOM (0) | 2022.05.19 |
| [Python] List method (0) | 2021.10.19 |
| [Python] List - Negative Slicing (0) | 2021.01.25 |
| Python Input - map함수, readline함수 (0) | 2021.01.22 |
Comments