1. 환경설정 – Anaconda

돌 돌
스피닝 아나콘다

1. 아나콘다 다운로드

지름길

아나콘다 | 아나콘다 분포

Anaconda의 오픈 소스 배포판은 단일 컴퓨터에서 Python/R 데이터 과학 및 기계 학습을 수행하는 가장 쉬운 방법입니다.

www.anaconda.com


1. 환경설정 - Anaconda 1

삼.

(pandas_env) C:\Users\ubiqu\python\pandas>conda install git
Collecting package metadata (current_repodata.json): failed

CondaSSLError: OpenSSL appears to be unavailable on this machine. OpenSSL is required to
download and install packages.

Exception: HTTPSConnectionPool(host="repo.anaconda.com", port=443): Max retries exceeded with url: /pkgs/main/win-64/current_repodata.json (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available."))

C:\Users\ubiqu\anaconda3\pkgs\openssl-1.1.1t-h2bbff1b_0\라이브러리\bin

libcrypto-1_1-x64.dll

libssl-1_1-x64.dll

https://youtu.be/hfKAV6OYaKw

conda install libpython m2w64-toolchain -c msys2

2.

sysdm.cpl

Git 파일의 별도 프로젝트 경로

가상 환경 설정


(base) C:\Users\ubiqu>create --name pandas_env
'create' is not recognized as an internal or external command,
operable program or batch file.

(base) C:\Users\ubiqu>conda create --name pandas_env
Collecting package metadata (current_repodata.json): done
Solving environment: done

## Package Plan ##

  environment location: C:\Users\ubiqu\anaconda3\envs\pandas_env



Proceed ((y)/n)? y

Preparing transaction: done
Verifying transaction: done
Executing transaction: done
#
# To activate this environment, use
#
#     $ conda activate pandas_env
#
# To deactivate an active environment, use
#
#     $ conda deactivate


(base) C:\Users\ubiqu>activate pandas_env

(HandsOnPandas) C:\Users\ubiqu\Python\HandsOnPandas>pip3 install -r requirements.txt
Collecting git+https://github.com/stefmolin/login-attempt-simulator.git@2nd_edition (from -r requirements.txt (line 15))
  Cloning https://github.com/stefmolin/login-attempt-simulator.git (to revision 2nd_edition) to c:\users\ubiqu\appdata\local\temp\pip-req-build-n7ttvput
  ERROR: Error (WinError 2) The system cannot find the file specified while executing command git version
ERROR: Cannot find command 'git' - do you have 'git' installed and in your PATH?

(HandsOnPandas) C:\Users\ubiqu\Python\HandsOnPandas>conda install git

Github 링크


1. 환경설정 - Anaconda 2