전체 글621 Intellij 에서 git repository clone하기 Intellij 에 깃 저장소를 연결하고자 한다. VCS - Get from Version Control - url 에 들어가 경로 지정해주면 된다. 2020. 11. 6. [Intellij] git bash로 실행하기 File - Settings - Tools - terminal 에서 Shell path 에 cmd.exe 로 되어 있는 것을 C:\Program Files\Git\bin\sh.exe -login -i 다음과 같은 경로로 변경해준다. 그러면 터미널 창에서 Gitbash로 변경된 것을 확인할 수 있다. 2020. 11. 6. WARNING! Using --password via the CLI is insecure. Use --password-stdin gitlab-ci.yml 비밀번호 오류가 나면서 안됨 --password-stdin로 변경해서 사용하면 다음과 같은 에러가 뜨면서 안됨 Error: Cannot perform an interactive login from a non TTY device 해결 docker login 부분에서 $CI_REGISTRY 의 경로가 지정되어 있지 않아 생기는 오류였다. 2020. 11. 3. .git 삭제 명령어 / git 연결끊기 git이랑 연결된 프로젝트의 연결을 취소하고 싶을 때 .git 파일을 삭제해주어야 한다. 프로젝트가 삭제되는것이 아니고 깃과 연결되어있는 .git을 삭제하는 것이다. 삭제하는 명령어는 find ./ -name ".git" | xargs rm -Rf 2020. 10. 30. fatal : not a git repository (or any of the parent directories): .git 초기화 작업이 진행되지 않아 발생하는 오류로 git init 명령어로 초기화 및 기본 설정 .git 디렉토리를 생성해야 한다. # git init # ls -la 그럼 다음과 같이 .git 이 생성된 것을 확인할 수 있다. 2020. 10. 30. [python] pip install albumentations error pip install albumentations 실행시 다음과 같은 에러가 나온다면 ERROR: Could not install packages due to an EnvironmentError: [WinError 5] 액세스가 거부되었습니다: 'c:\\users\\user\\anaconda3\\Lib\\site-packages\\cv2\\cv2.cp37-win_amd64.pyd' Consider using the `--user` option or check the permissions. 파이선 3.6 버전이나 그 상위버전에서만 사용이 가능하다. pip install --user albumentations To install albumentations using conda we need first to i.. 2020. 10. 29. 이전 1 ··· 94 95 96 97 98 99 100 ··· 104 다음