디렉터리

  • pwd
  • ls
    • ls -1
    • ls -a
    • ls -al
  • cd (name)
  • cd ..
  • cd ./(name)
  • mkdir
  • cat (name)
  • cp (name) (name)

터미널과 CLI

  • 터미널 글자기반으로 명령을 내리고 결과를 확인하는 어플리케이션
  • 글자 기반 환경 CLI (Command Line Interface)
  • 그래픽 기반 환경 GUI(Graphical User Interface)

파이썬 가상환경

  • which python(mac)
  • where python(window)
  • python --version
  • pip list

패키지 충돌

  • 설치 위치
import sys
print(sys.prefix)
import site
print(site.getsitepackages())
  • 설치 방식

콘다 가상환경

  • conda --version
  • conda env list
  • conda create --name 'practice' python=3.8
  • conda activate 'practice'
  • conda deactivate
  • conda env remove --name 'practice'

Git & Github

  • Git : 버전 관리 시스템 (Version-Control System)
  • git clone (url)
  • git status
  • git add (file)
  • git add ./
  • git commit -m (수정내용)
  • git reset HEAD^
  • git push
  • git init
  • git remote add origin https://github.com/kimcoding/test
  • git push origin main
  • git remote add pair https://github.com/pair/test
  • git remote -v
profile
일단 저지르자! 그리고 해결하자!

0개의 댓글