본문 바로가기

분류 전체보기621

[Intellij] Intellij에서 jupyter notebook 연결 python 파일은 src와 같은 라인에 만들어 주었다. D:/Users/Intellij/apidemo/python/ Jupyter Server Configure 설정 ipynb있는 파일 에서 Configure jupyter server 를 누르면 Configured Server 에 현재 올라가져있는 주피터 노트북 주소와 토큰까지 복사해서 붙여넣기 하면된다. 현재 올라가져있는 주피터 노트북 확인은 java terninal 창에 다음 명령어로 jupyter 서버가 실행되었는지 확인하면 된다. jupyter notebook list 전체 링크를 configured server 에 복사 붙여넣기 한 후 OK 를 누른다. 주피터 노트북의 환경설정 주피터 노트북의 환경설정 파일 위치를 찾아서 C:\Users\us.. 2021. 10. 20.
attributeerror module 'tweepy' has no attribute 'streamlistener' konlpy 현재 내가 사용하고 있는 tweepy 버전은 4점대 버전이였는데 다음과 같은 에러가 나왔을 때는 tweepy 버전을 낮춰준다. 파이썬은 3.8 버전이다. pip install tweepy==3.10.0 버전이 다운그레이드 되었는지 확인한다. import tweepy tweepy.__version__ 2021. 10. 20.
[Intellij] python interpreter configure 설정하기 (자바에서 파이썬 실행하기) Java에서 python을 실행시키고자 할 때 python interpreter 를 세팅해주어야 한다. (Intellij Ultimate 사용중) Intellih에 파이썬 파일을 넣고 실행시키려고 하니 no python interpreter configured for the module 의 오류가 노오고 파이썬 실행을 할 수 없었다. 다음 에러를 해결하고 Intellij에서 파이썬을 해결하기 위해서는 python sdk 를 추가하면된다. 프로젝트 상단에 File -> Project Structure -> Platform Settings -> SDKs -> + -> Add Python SDK System Interpreter 에서 python.exe 파일을 선택한다. SDK를 설정하고 자바를 실행시켰을 때.. 2021. 10. 20.
[spring] spring cors 해결 @CrossOrigin(origins = "*") 2021. 10. 19.
java.net.ProtocolException: cannot write to a URLConnection if doOutput=false - call setDoOutput(true) POST 방식으로 REST API 호출시에 발생하는 에러이다. 아래 내용에서 con.setDoOutput(true) 로 설정해주면 된다. HttpURLConnection con = (HttpURLConnection)obj.openConnection(); con.setRequestMethod("POST"); con.setDoOutput(true); // 이 항목을 추가 2021. 10. 19.
java selenium input 값 입력 및 버튼 클릭 ID로 input 값에 값 입력하기 WebElement tab2 = driver.findElementById("sc_word"); tab2.sendKeys(keyword); xpath 로 버튼 클릭하기 WebElement tab1 = driver.findElementByXPath("//*[@id=\"search-tabs1\"]/form/footer/div/button"); tab1.click(); 2021. 10. 18.