반응형

Python/기타 코딩 26

파이참에서 원격 주피터 노트북 사용하기

파이참으로 원격 서버의 interpreter를 사용하여 주피터 노트북 사용하는 방법을 알아보겠습니다. 우선 local에 ipynb 파일을 생성합니다. ipynb 파일을 실행하면 상단에 interpreter를 설정할 수 있는 옵션이 있습니다. 다음 옵션으로 interpreter를 설정하면 Jupyter server process failed to start Illegal char :> at index 4 에러가 발생합니다. configured server 로 설정을 해줘야 하는데요. 원격 서버에서 jupyter notebook을 실행 후 생성된 주소와 토큰을 configured server에 입력해주면 됩니다. 127.0.0.1 부분을 원격 서버의 ip로 설정해주어야 합니다.

Selenium을 사용해서 백준 유저가 푼 문제 크롤링 하기

리눅스 환경에서 진행했습니다. 아래 명령어를 실행하여 크롬 드라이버를 설치합니다. apt install chromium-chromedriver 백준 사이트에서 유저가 푼 문제를 받아오는 코드입니다. def get_solved_problem(name='chleodnr3'): options = webdriver.ChromeOptions() options.add_argument("headless") # apt install chromium-chromedriver name = 'chleodnr3' driver = webdriver.Chrome(options=options) driver.get("https://www.acmicpc.net/user/{}".format(name)) element = driver.fi..

파이참 한국어에서 영어로 설정하기

파이참 버전 업데이트를 하니 자동으로 한국어팩이 설치되어 한국어 파이참이 적용되었다. 영어 파이참을 오래 써왔던 터라 오히려 한국어 버전이 불편했는데 이번 기회에 한국어에서 영어로 변경해보고 방법까지 공유하겠다. setting에서 plugins에 들어간다. 위에 있는 installed(설치됨) 탭에 들어가면 한국어 언어팩을 볼 수 있는데, 체크를 풀어주고 apply를 누르면 된다.

[error] ubuntu 환경에서 Wand 설치하기

MMdetection을 사용할 일이 생겨서 환경 셋팅을 하는 도중에 Wand를 import하는 과정(MMdetection 코드 내부에 Wand를 import 하는 과정이 있음)에서 에러가 발생했다. ImportError: MagickWand shared library not found. You probably had not installed ImageMagick library. Wand 내부에 ImageMagick library를 불러오는데, ImageMagick이 설치되지 않아서 발생한 오류. sudo apt-get install libmagickwand-dev 위 명령어로 magickwand를 설치하면 작동한다.

[Error] h5py.FIle()에서 경고 메세지 H5pyDeprecationWarning: The default file mode will change to 'r'

h5py file을 불러오는 코드를 다음과 같이 작성했다. file = h5py.File(path2h5) train_data = file['data'][:].astype('float32') train_label = file['label'][:].astype('float32') file.close() 다음과 같은 경고 메세지가 발생 dataset.py:10: H5pyDeprecationWarning: The default file mode will change to 'r' (read-only) in h5py 3.0. To suppress this warning, pass the mode you need to h5py.File(), or set the global default h5.get_config()...

반응형