0w0
[아나콘다] Anaconda Prompt 명령어 본문
728x90
반응형
1. >conda
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
(base) C:\Users\0w0>conda
usage: conda-script.py [-h] [-V] command ...
conda is a tool for managing and deploying applications, environments and packages.
Options:
positional arguments:
command
clean Remove unused packages and caches.
config Modify configuration values in .condarc. This is modeled
after the git config command. Writes to the user .condarc
file (C:\Users\0w0\.condarc) by default.
create Create a new conda environment from a list of specified
packages.
help Displays a list of available conda commands and their help
strings.
info Display information about current conda install.
init Initialize conda for shell interaction. [Experimental]
install Installs a list of packages into a specified conda
environment.
list List linked packages in a conda environment.
package Low-level conda package utility. (EXPERIMENTAL)
remove Remove a list of packages from a specified conda environment.
uninstall Alias for conda remove.
run Run an executable in a conda environment. [Experimental]
search Search for packages and display associated information. The
input is a MatchSpec, a query language for conda packages.
See examples below.
update Updates conda packages to the latest compatible version.
upgrade Alias for conda update.
optional arguments:
-h, --help Show this help message and exit.
-V, --version Show the conda version number and exit.
conda commands available from other packages:
build
convert
debug
develop
env
index
inspect
metapackage
render
server
skeleton
verify
|
cs |
2. 아나콘다 버전 정보 확인
>conda --vesrion
1
2
|
(base) C:\Users\0w0>conda --version
conda 4.7.10
|
cs |
3. 업데이트 수행
>conda update conda
- 가상 환경 생성 및 모듈 설치에 에러가 발생하면 주로 업데이트 문제일 가능성이 큼.
- 웬만하면 설치 후 바로 업데이트 해주면 버전 상 에러는 안뜸.
4. 가상환경 생성
>conda create --name [name] python=[version]
ex)conda create --name 3210w0 python=3.6
5. 가상환경 제거
>conda remove -name [name] --all
ex)conda remove -name 3210w0 --all
6. 가상환경 목록 확인
>conda info --envs
7. 가상환경 활성화
>activate [name]
ex)activate 3210w0
8. 가상환경 비활성화
>deactivate [name]
ex)deactivate 3210w0
9. 해당 가상환경에서 가지는 모듈 목록 확인
>conda list
10. activate 모듈 설치(pip 설치)
>pip install [module]
ex)pip install selenium
11. activate 모듈 제거(pip 제거)
>pip uninstall [module]
ex)pip uninstall selenium
12. activate 캐쉬, 압축파일 제거
>conda clean -all
728x90
반응형
'Penguin' 카테고리의 다른 글
[파이참] 파이참 자동 줄바꾸기 (0) | 2019.08.09 |
---|---|
[Webdriver] Chromedriver, FireFox(geckodriver), Phantomjs (0) | 2019.08.09 |
[파이참] PyCharm Setup, 파이참 설치 (0) | 2019.07.21 |
[깃] Git Setup, 깃 설치 (0) | 2019.07.21 |
[아나콘다] Anaconda Setup, 아나콘다 설치 (0) | 2019.07.21 |
Comments