목록랭귀지 (579)
아미(아름다운미소)
pip uninstall -y numpy pip uninstall -y setuptools pip install setuptools pip install numpy
There is no tracking information for the current branch. Please specify which branch you want to merge with. See git-pull(1) for details. git pull If you wish to set tracking information for this branch you can do so with: git branch --set-upstream-to=origin/ master ============================================== -u`나 `--set-upstream-to 옵션 줘서 로컬 master가 origin/master를 추적하게끔 해줍니다. $git branch --se..
기존 리포지토리 remote 제거 $git remote remove origin 새 리포지토리 remote 추가 $git remote add origin https://github.com/계정/리포지토리 리포지토리확인 $git remote --v
push할 때 다음과 같은 오류가 났다면 대부분 원격 저장소와 로컬 저장소의 상태가 달라서 나는 오류일 입니다. 이런 경우 pull을 먼저 해주어 둘의 상태를 같게 한 다음 push를 해주면 해결됩니다.
pip이란 python으로 작성된 패키지의 설치 및 관리를 해주는 프로그램입니다. pip은 Python 2.x용, pip3는 Python 3.x용 프로그램입니다. apt-get install python-pip apt-get install python3-pip 예제) pip bs4 pandas lxml pip3 bs4pandas lxml
Linux에서 설치 python 2.X sudo apt-get install python-pip python 3.X sudo apt-get install python3-pip MAC에서 설치 sudo easy_install pip
Flutter WebviewScaffold class _MyHomePageState extends State { @override Widget build(BuildContext context) { return WebviewScaffold( url: "https://flutter.dev/", withJavascript: true, withZoom: false, appBar: AppBar( title: Text("Flutter"), elevation: 1 ), ); } }
PHP에서 현재 날짜 가져오는 함수는 아래와 같습니다. $today = date("Ymd"); echo $today; >> 20200506 date 함수안에 String 값에는 다양한 옵션 값들이 들어갈 수 있습니다. $today = date("Y-m-d"); echo $today; >> 2020-05-06 옵션 값 설명 Y 4자리 연도 (2020) y 2자리 연도 (20) m 0을 포함한 월 (01 ~ 12) n 0을 제외한 월 (1 ~ 12) d 0을 포함한 일 (01 ~ 31) j 0을 제외한 일 (1 ~ 31) h 0을 포함한 시간 (01 ~ 12) g 0을 제외한 시간 (1 ~ 12) H 0을 포함한 시간 (00 ~ 23) G 0을 제외한 시간 (0 ~ 23) i 분 (00 ~ 59) s 초 (..