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
- rest-api
- Knowledge Distillation
- model-free control
- scowl
- shadowing
- MRI
- Policy Gradient
- straightup
- thresholding
- sample rows
- Inorder Traversal
- fastapi
- 자료구조
- 3d medical image
- remove outliers
- Actor-Critic
- resample
- non parametic softmax
- REINFORCE
- pulloff
- objective functions for machine learning
- freebooze
- Excel
- clip intensity values
- loss functions
- sidleup
- domain adaptation
- normalization
- checkitout
- noise contrast estimation
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