728x90
반응형

가상환경 실행 / 해제

가상환경이 설치된 폴더에서 cmd창을 열고(cmd창에서 해당 경로로 이동해도 됨) 아래의 명령어 실행

windows의 경우 Scripts / Mac의 경우 Bin

📌 가상환경 실행

> cd Scripts
> activate.bat

📌 가상환경 해제

> deactivate.bat

 


패키지 설치 / 삭제

📌 simplejson 패키지 설치

> pip install simplejson

📌 패키지 삭제

> pip uninstall simplejson

Proceed (y/n)? 이 뜨는 경우 y를 입력


패키지 리스트 출력

📌 가상환경에 설치된 목록 출력

> pip list

 


패키지 정보 출력

📌 simplejson 패키지의 상세 정보 출력

> pip show simplejson

 


패키지 검색

🚫 pip search 커맨드가 PyPI 서버에 과부하를 줘서 현재 비활성화 상태임

 

📌 search 명령어

> pip search simple*

현재는 search 명령어를 입력하면 아래의 에러가 뜸 👇

ERROR: Exception: Traceback (most recent call last):

......

<Fault -32500: "RuntimeError: PyPI's XMLRPC API is currently disabled due to unmanageable load and will be deprecated in the near future. See https://status.python.org/ for more information.">

의 에러가 나는 경우 search 명령어를 사용했는지 확인해보기

 

😥 아쉽지만 PyPI 사이트에서 직접 패키지 찾아서 사용하기

https://pypi.org/

 

PyPI · The Python Package Index

The Python Package Index (PyPI) is a repository of software for the Python programming language.

pypi.org

반응형

'프로그래밍 > Python' 카테고리의 다른 글

파이썬 가변인자 예제  (0) 2021.08.11
파이썬 다중 리턴과 힌트 예제  (0) 2021.08.10
파이썬에서 가상환경을 쓰는 이유  (0) 2021.08.04
파이썬 Print문  (0) 2021.08.03
파이썬의 장단점  (0) 2021.08.02
복사했습니다!