일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- 맛집
- IOS
- 함수
- GIT
- 날짜
- pandas
- javascript
- flutter
- urllib
- Excel
- Unity
- Linux
- sqlite
- 다이어트
- PyQt
- swift
- ubuntu
- mssql
- 라즈베리파이
- 리눅스
- tensorflow
- node.js
- PER
- port
- MySQL
- python
- PyQt5
- MS-SQL
- ASP
- 유니티
목록랭귀지 (557)
아미(아름다운미소)

pip install beautifulsoup You're trying to run a very old release of Beautiful Soup under Python 3 "You're trying to run a very old release of Beautiful Soup under Python 3. This will not work.""Please use Beautiful Soup 4, available through the pip package 'beautifulsoup4'." pip install beautifulsoup4
Mojave에서 Catalina로 업데이트하고 터미널을 실행하고 bash 쉘에서 기본 / 선호 zsh 쉘로 전환했습니다. sudo nano $HOME/.zshrc export PATH="$PATH:/YOUR_FLUTTER_SDK_DIR/flutter/bin"

아래 모듈을 받으면 '안드로이드 스튜디오'나 여타 다른 IDE처럼 여러 탭을 띄워놓고 쓸 수 있다. 1. 아래 소스를 받는다. https://github.com/dnbard/brackets-documents-toolbar 2. 해당 ZIP 파일을 설치영역에 끌어다 놓는다. (노란색 하이라이트부분에) 3.브라켓 재시작 dnbard/brackets-documents-toolbar Extension that adds new toolbar with a list of all open documents. - dnbard/brackets-documents-toolbar github.com
이클립스에서 자바스크립트 자동완성 기능 사용하기 이클립스 마켓플레이스에서, Wild Web Developer 플러그인을 설치합니다. 이클립스에서, [Window]-[Preferences]-[JavaScript]-[Editor]-[ContentAssistant]에서 'enable auto activation'을 체크.
node.js 소개 node.js는 Javascript의 일종이지만, 기존의 Javascript와는 개념이 조금 다른 언어입니다. node.js는 서버사이드에서 동작이 가능한 언어로, Javascript의 표준 라이브러리 프로젝트인 CommonJS의 모듈 시스템을 지원하고 있으며, 구글 V8 Javascript를 지원하는 서버사이드 개발 언어/웹서버 입니다. 또한, node.js는 이벤트를 기반으로 비동기 동작하는 non-blocking single thread 언어로, Apache와 같이 모든 요청마다 시스템 쓰레드를 생성하는 시스템에 비해 메모리 사용량이 현저히 적고 강력한 성능을 발휘합니다.

1. 기본 python 버전을 확인합니다. $python --version 2. 기본 Python의 위치(PATH)를 확인합니다. $which python 3. 변경할 새로운 Python 3.X 의 위치(PATH)를 확인합니다. $which python3 4. 아래 명령어를 사용하여 디폴트 파이썬을 바꿔줍니다. $sudo ln -sf [new_python_path] [privious_python_path]
[!] Android toolchain - develop for Android devices (Android SDK version 29.0.2) ! Some Android licenses not accepted. To resolve this, run: flutter doctor --android-licenses $flutter doctor --android-licenses
pyqt5 레이블 배경색 self.label = QtWidgets.QLabel(self) self.label.setGeometry(QtCore.QRect(10, 350, 280, 30)) self.label.setObjectName("conditionListlabel1") self.label.setStyleSheet('color:navy;background:#ffff99;') self.label.setText(" 글씨색 navy 배경색 #ffff99 적용 ")

pyinstaller No module named pkg_resources.py2_warn 환경(윈도우7, 아나콘다3 : 파이썬3.7 가상환경) 에러메세지(Pyinstaller 에러 시(Version 3.7)) Pyinstaller 에러 시(Version 3.7) 삭제 후 재설치 pip uninstall pyinstaller pip install https://github.com/pyinstaller/pyinstaller/archive/develop.zip