Skip to content

Instantly share code, notes, and snippets.

@yjinheon
Last active May 22, 2021 07:05
Show Gist options
  • Save yjinheon/9d854d2f4dedd669efb25eb508b9c0b7 to your computer and use it in GitHub Desktop.
Save yjinheon/9d854d2f4dedd669efb25eb508b9c0b7 to your computer and use it in GitHub Desktop.
자주쓰는 코드

Powershell symbolic link(관리자 권한으로 실행)

New-Item -ItemType SymbolicLink -Path "C:\Users\yjinh" -Name "simplecode" -Target "C:\Users\yjinh\Projects\Python_Project\SimpleCode"
New-Item -ItemType SymbolicLink -Path "원하는 디렉토리" -Name "신규 이름" -Target "실제 디렉토리 위치"

가상환경 열기(bash)

source ~/anaconda3/etc/profile.d/conda.sh
activate 가상환경 이름
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment