Anaconda - noweaver/odds-and-ends GitHub Wiki

μ½˜λ‹€ μ‚¬μš©λ²•

$ conda --version                               // μ•„λ‚˜μ½˜λ‹€ 버전 확인
$ conda update conda                            // μ•„λ‚˜μ½˜λ‹€ μ—…λ°μ΄νŠΈ

$ conda create -n jupyter-env python=3.6        // μ•„λ‚˜μ½˜λ‹€ κ°€μƒν™˜κ²½ 생성
$ conda create --name jupyter-env python=3.6    // μ•„λ‚˜μ½˜λ‹€ κ°€μƒν™˜κ²½ 생성
$ conda remove -y -name jupyter-env --all       // μ•„λ‚˜μ½˜λ‹€ κ°€μƒν™˜κ²½ 제거   
$ conda remove -y -n jupyter-env --all          // μ•„λ‚˜μ½˜λ‹€ κ°€μƒν™˜κ²½ 제거   

$ conda env list                                // κ°€μƒν™˜κ²½ 리슀트
$ conda info --envs                             // κ°€μƒν™˜κ²½ 리슀트


$ activate jupyter-env                          // κ°€μƒν™˜κ²½ ν™œμ„±ν™”
$ deactivate jupyter-env                        // κ°€μƒν™˜κ²½ λΉ„ν™œμ„±ν™”

$ conda install jupyter                         // jupyter νŒ¨ν‚€μ§€ μ„€μΉ˜
$ conda list                                    // νŒ¨ν‚€μ§€ 리슀트 확인
$ conda update jupyter                          // νŒ¨ν‚€μ§€ μ—…λ°μ΄νŠΈ
$ conda remove jupyter                          // νŒ¨ν‚€μ§€ 제거

$ conda clean --all                             // μΊμ‹œ μ‚­μ œ
$ conda clean -a                                // μΊμ‹œ μ‚­μ œ

μ½˜λ‹€ νŒ¨ν‚€μ§€ μ„€μΉ˜ μ—λŸ¬

$ conda update anaconda
Solving environment: ...working... failed

CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://repo.anaconda.com/pkgs/msys2/noarch/repodata.json.bz2>
Elapsed: -

An HTTP error occurred when trying to retrieve this URL.
HTTP errors are often intermittent, and a simple retry will get you on your way.

If your current network has https://www.anaconda.com blocked, please file
a support request with your network engineering team.

SSLError(MaxRetryError('HTTPSConnectionPool(host=\'repo.anaconda.com\', port=443): Max retries exceeded with url: /pkgs/msys2/noarch/repodata.json.bz2 (Caused by SSLError(SSLError("bad handshake: Error([(\'SSL routines\', \'ssl3_get_server_certificate\', \'certificate verify failed\')])")))'))


$ conda config --set ssl_verify no
$ conda update anaconda
Solving environment: ...working... done

# All requested packages already installed.


$ conda install -y pandas
Solving environment: ...working... done

# All requested packages already installed.