본문 바로가기
반응형

● IDE, System/VSCODE16

[문제해결] django.db.utils.OperationalError: no such column: blogapp_blog.title // Y 에러django.db.utils.OpertationalError : no such columnYou are trying to add a non-nullable field 'title' to blog without a default 상황객체를 수정할 때, 중복되는 title 변수를 재수정한 후python manage.py migrations를 입력하니다음 텍스트가 나타났다.You are trying to add a non-nullable field 'title' to blog without a default; we can't do that (the database needs something to populate existing rows). 이대로 진행할 경우 admin페이지에서 다음 오류가 발생한다.Op.. 2021. 3. 12.
[에러해결][django] OSError: [WinError 123] 파일 이름, 디렉터리 이름 또는 볼륨 레이블 구문이 잘못되었습니다: 장고 에러 발생 : OSError: [WinError 123] 파일 이름, 디렉터리 이름 또는 볼륨 레이블 구문이 잘못되었습다 : '' 원인 : 프로젝트 폴더 > settings.py에서 ' , '를 작성하지 않음 문제 해결 : comma 추가 도움 출처 : ojjy.tistory.com/57 2021. 3. 4.
[드림코딩][VSCODE] 추천하는 익스텐션 11가지 [Live Server] 작성 중인 html,css 코드가 즉각 반영되어 어떻게 수정되는지를 알 수 있다. 설치 해준 뒤 F1을 누르고 live server를 검색하여 실행하면 끝! [HTML to CSS autocompletion] VSCODE에서 html에서 사용한 class, id명을 효과적으로 css에 적용하기 위한 VSCODE 익스텐션 이걸 사용하면 초성만 써도 네임이 작동완성된다. 2021. 3. 1.
[VSCODE] Git Bash에서 바로 실행하기 VSCODE에서 실행하고자 하는 폴더로 이동 > 우측마우스 > Git Bash Here 클릭 code . 을 입력하면 VSCODE에 해당 폴더의 모든 파일이 들어간 채 실행된다. 참고 : irrationnelle.tistory.com/11 2021. 2. 27.
[VSCODE] Git Hub 커밋 중 오류 해결 Make sure you configure your 'user.name' and 'user.email' in git. 해결방법 : Git 초기설정이 안되어 있기 때문. git config --global user.name "myname" git config --global user.email "myemail@gmail.com" 을 입력해준다. 그럼에도 오류가 발생한다면 하단 자료를 보고 순서대로 따라하면 된다. 0ver-grow.tistory.com/835 깃허브 시작하기. 총정리 (init, add, commit, push, pull) 1. git bash 실행 후 이름, 이메일 입력 git config --global user.name "myname" git config --global user.em.. 2021. 2. 27.
[VSCODE] gitignore로 가상환경 제외하고 깃허브 커밋하기 (python, django, venv) express에선 다음과 같이 .gitignore를 통해 필요없는 파일들을 제외 시켰다. 1. express 시작하기 / .gitignore 설정방법 / 깃허브 커밋하기 npm을 설치해주자 npm init 이렇게하면 node_modules과 함께 package-lock.json, package.json이 설치된다. 그리고 npm install express 를 입력하여 익스프레스를 설치하면 package.json파일의 dependency에 expr.. 0ver-grow.tistory.com 그렇다면 django에선 어떻게 gitignore를 설정해야 할까? 홈페이지를 통해 쉽게 gitignore의 코드를 만들 수 있다. gitignore.io Create useful .gitignore files for.. 2021. 2. 26.
[VSCODE] django에서 html 자동완성이 안될 때는 이렇게 하자 좌측 하단의 Django HTML을 HTML로 바꿔주면 된다. 여기서 HTML을 검색해서 최상단에 있는 HTML을 선택 이제 ! + tab키를 눌러주면 html이 자동완성된다. 2021. 2. 26.
[파이썬 에러] VSCODE "unresolved import 'django.contrib'Python(unresolved-import)" urls.py from django.contrib import admin from django.urls import path 위 코드에서 오류발생 unresolved import 'django.contrib'Python(unresolved-import) unresolved import 'django.urls'Python(unresolved-import) 1. Ctrl키와 함께 , 키를 눌러준다. 2. terminal.integrated.shell.windows 를 입력 3. Edit in settings.json을 클릭 4. 다음 코드를 추가한다. "python.pythonPath": "/path/to/your/venv/bin/python" 2021. 2. 26.
[파이썬 에러] 가상환경 실행 중 에러 발생 : deactivate () { ^ SyntaxError: invalid syntax 에러 $ python myvenv/Scripts/activate File "D:\DEV\myvenv\Scripts\activate", line 4 deactivate () { ^ SyntaxError: invalid syntax 해결 $ source myvenv/Scripts/activate 참고 : stackoverflow.com/questions/49799331/when-i-try-to-activate-a-virtual-environment-with-venv 2021. 2. 26.
[VSCODE] 비쥬얼스튜디오코드에서 깃허브 배쉬 사용, 설치하기. (Visual Studio Code with Git bash) 비쥬얼 스튜디오 코드의 터미널창에서 깃배쉬를 사용해보자. 1. Ctrl키와 함께 , 키를 눌러준다. 2. terminal.integrated.shell.windows 를 입력 3. Edit in settings.json을 클릭 4. bash.exe가 있는 폴더 위치로 코드를 수정한다. 수정 전 코드 "terminal.integrated.shell.windows": "" 수정 후 코드 "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe" 5. 새 터미널 창을 열거나, VSCODE를 새로 실행하면 터미널창에 git bash가 나타난다. 끝. 6. 만약에 git bash가 나타나지 않는다면? vscode로 작업하고자 하는 폴더.. 2021. 2. 26.
[파이썬 에러] settings.json에 "python.jediEnabled" : false 가 존재하지 않습니다. (Unknown Configuration Setting : No quick fixes available) 현재 "python.jediEnabled" : true로 수정해야 하지만 이 코드 자체가 없다. "python.jediEnabled": true, # true : jedi 동작. false : jedi 동작X 추가로 입력을 해도 Unknown Configuration Setting : No quick fixes available 이란 오류가 발생한다. 이유? vscode-python에선 2020년 6월 16일에 python.jediEnabled에 대한 세팅이 삭제됨. 해결책 : "python.languageServer": "Microsoft"를 "python.languageServer": "Jedi"으로 수정한다. 문제해결도움 : stackoverflow.com/questions/62470439/vsco.. 2021. 2. 24.
[장고 에러] WARNING: You are using pip version 20.2.3; however, version 21.0.1 is av 에러발생 WARNING: You are using pip version 20.2.3; however, version 21.0.1 is available 해결방법은 간단하다. pip를 업데이트하면 끝! OS에 따라 다른 명령어를 입력하면된다. 1. 리눅스환경 : pip 업데이트 하기 2. 윈도우 환경 : pip 업데이트 하기 python -m pip install --upgrade pip 도움이 되셨다면 하단의 ❤하트❤ 클릭해주세요! 감사합니다 😊 2021. 2. 23.
[장고 에러] ImportError: Couldn't import Django. Are you sure it's installed and ava 오류명ImportError: Couldn't import Django. Are you sure it's installed and available on your PYTHONPATH environment variable? Did you forget to activate a virtual environment? 원인가상환경에 django가 설치되어 있지 않기 때문 해결가상환경에서 하단 코드입력하여 설치 진행pip install django 설치 후 하단 경고 발생WARNING: You are using pip version 20.2.3; however, version 21.0.1 is available.You should consider upgrading via the 'c:\users\topgu\appda.. 2021. 2. 23.
[장고 에러] unresolved import 'myapp' Python(unresolved-import) urls.py 작성과정 중 import myapp.views를 입력하니 에러발생 unresolved import 'myapp' Python(unresolved-import) 해결과정 A 1. VSCODE에서 Ctrl + Shift + P를 누른다. 2. Python Select Interpreter 입력 3. 사용중인 Python 버전에 맞는 경로를 선택 A과정이 안된다면 B과정을 따를 것 해결과정 B 1. Ctrl + Shift + P 2. Language Specific 검색 3. Python 검색해서 클릭하면 settings.json파일이 열림 "python.jediEnabled" 항목을 삭제함 만약 settings.json에서"python.jediEnabled" : false, 가 없다면? 추가로.. 2021. 2. 23.
[VSCODE] Visual studio code에서 git 허브와 연동하기 / git 허브 커밋하기 깃허브 연동하기 1. 깃허브와 연동하기 VSCODE에서 F1키 누르기 git clone 입력 Git : Clone 메뉴 선택 만약, git clone을 입력했음에도 No matching commands라고 뜬다면? git-scm.com/에서 깃허브를 설치해야된다. 설치 후 vscode를 재실행한 뒤, git clone을 입력하면 정상적으로 뜬다. 2. 깃 주소 입력하기 깃 주소는 본인의 깃Repository로 가면 있음 3. 클론 시킬 폴더(위치 설정) 선택하면 끝. VSCODE에서 깃허브에 Commit, push하기 1. VSCODE에서 3번째 클릭 2. + 클릭 3. Commit 메시지 입력 4. 체크표시 클릭 만약에 여기서 가 뜬다면?? 5. 새로고침표 클릭 도움이 되셨다면 하단의 ❤하트❤ 클릭해주.. 2021. 2. 22.
[DB연결 웹앱 JS] VSCode javascript 출력하기 Extension > code runner 검색해서 설치 crtl + alt + N 입력하면 정상실행됨 출처 : https://stackoverflow.com/questions/31778413/run-javascript-in-visual-studio-code Run JavaScript in Visual Studio Code Is there a way to Execute javascript and display the results using Visual Studio Code? For example a script file containing console.log('hello world'); I assume that nodejs would be needed but c... stackoverflow.com 2019. 7. 29.
반응형