본문 바로가기

프로그래밍 (이동 완료)

(54)
파이썬 모듈 배포 파이썬 -m 의미 https://jins-sw.tistory.com/22 -m 실행 옵션과 __name__ Python 관련 글들을 보다 보면 스크립트를 실행시킬 때 어떤 때는 python3 script.py처럼 실행시키고, 어떤 때는 python3 -m script처럼 -m 옵션을 사용해서 실행시킬 때가 있습니다. 차이는 무엇일까요? 전 jins-sw.tistory.com
파이썬 CLI - Typer https://jonnung.dev/python/2021/01/16/python-cli-typer/#gsc.tab=0
파이썬 - import가 module과 package 를 찾아가는 경로 https://velog.io/@devmin/%ED%8C%8C%EC%9D%B4%EC%8D%AC-import%EA%B0%80-module%EA%B3%BC-package-%EB%A5%BC-%EC%B0%BE%EC%95%84%EA%B0%80%EB%8A%94-%EA%B2%BD%EB%A1%9C 파이썬 - import가 module과 package 를 찾아가는 경로 파이썬에서는 import를 활용해 현재 작성하고 있는 파일 바깥의 패키지 및 모듈을 불러와 그 안에 있는 요소들을 가져다 쓸 수 있는데요, 이때 파이썬이 어떻게 패키지와 모듈이 있는 곳을 찾아나 velog.io
git 기초 및 기초 명령어 기존 원격 저장소 Clone 할 경우 git clone git remote -v git add -a git commit -m "commit message" git push git log : 현재 version 위의 사앹를 보여 줌 git log --all --oneline git checkout : 해당 version 으로 working, staging 을 변경 git chekcout master : master 로 이동 Git 기초 HEAD : Working directory 와 Stage area 가 어떤 version 과 같은지 알려 줌. MASTER : 현재 branch 에서 작업한 마지막 version 이 무엇인지 알려 줌 CHECKOUT : Working directory 와 Stage are..
Python Package Management History Pip (Pythin is Pip) (Python 2.7.9 에 도입) Pip 이전에는 disutils, easy_install 사용 PyPi (Python Package Index) : source distribution (sdist) repository, 113,000 개 Python Package 보유 Disutils : Python packaging 을 위한 standard tool Setuptools : Distutils 의 third party tool, extended compiiler 제공, python 에 pre-install 은 안되어 있음 Easy Install : pip 이전에 사용 출처 : https://www.nickmccullum.com/history-python-package..
파이썬 버전 매니저 - pyenv pyenv란? pyenv 사용하기 (tistory.com) pyenv란? pyenv 사용하기 이 글은 다음 글을 번역하여 정리한 글입니다. https://realpython.com/intro-to-pyenv/ 목차 · pyenv란? · pyenv 설치하기 · 파이썬을 설치하기 위해 pyenv 사용하기 · pyenv로 사용할 파이썬 버전 지정하기 · 가 scshim.tistory.com
vscode python venv Creating environments Using the Create Environment command From within VS Code, you can create local environments, using virtual environments or Anaconda, by opening the Command Palette (Ctrl+Shift+P), start typing the Python: Create Environment command to search, and then select the command. The command presents a list of environment types: Venv or Conda. If you are creating an environment usin..
vscode edit code- black 으로 formatting - refactoring : 드래그해서 extract variables, extract method, rename module, sort imports Enable lintingTo enable linters, open the Command Palette (Ctrl+Shift+P) and select the Python: Select Linter command. The Select Linter command adds "python.linting.Enabled": true to your settings, where is the name of the chosen linter. See Specific linters for details. Enabling ..