에러해결/PYTHON

modulenotfounderror: no module named 'fake_useragent'

Zziii 2024. 2. 20. 10:19
728x90
반응형

module not found error는 패키지를 설치해주면 되는 문제이다.

pycharm settings 가상환경에서는 아래와 같이 fake_useragent를 검색해도 나오지 않을 수 있다.

 

프롬프트 창을 실행시켜서

 

 

 

pip install fake_useragent

 

 

 

로 설치해준다.

728x90
반응형
let textNodes = document.querySelectorAll("div.tt_article_useless_p_margin.contents_style > *:not(figure):not(pre)"); textNodes.forEach(function(a) { a.innerHTML = a.innerHTML.replace(/`(.*?)`/g, '$1'); });