목록전체 글 (112)
Star_project
…or create a new repository on the command line echo "# Study" >> README.md git init git add README.md git commit -m "first commit" git branch -M main git remote add origin https://github.com/EOMMINJUNG/Study.git git push -u origin main …or push an existing repository from the command line git remote add origin https://github.com/EOMMINJUNG/Study.git git branch -M main git push -u origin main ta..
가상환경 생성 -n 은 네임 옵션 conda create -n {envname} 더보기 가상환경 확인하기 conda info --envs 또는 conda env list 명령어 더 자세히 보려면 conda info conda info --envs 더보기 가상환경 이름 변경 사실 이름 변경은 없고 복제할 때 이름을 바꿔서 복제 후 삭제하는 것 conda create -n [변경할 이름] --clone [기존환경이름] codna activate [변경할이름] conda remove --name [기존환경이름] --all 더보기 (ssac-one) C:\Users\mjeom>conda create -n minjeong --clone ssac-one Source: C:\Users\mjeom\miniconda3\..