Python Unresolved import

1798 단어 python
selenium import webdriver 에서 생 성 Unresolved import: webdriver 의 문제 입 니 다.
인터넷 에서 자 료 를 찾 아 보 니 가방 안에 가방 이름과 같은 py 파일 이 존재 하고 try 후 문 제 를 해결 할 수 없다 는 말 이 있 습 니 다.
다음 Stack Overflow 에서 해결 방안 이 발견 되 었 습 니 다.
링크 http://stackoverflow.com/questions/2983088/unresolved-import-models/2983096
Even if Lib/site-packages is added to the PYTHONPATH, this problem may happen when using modules from egg packages installed using easy_install. The problem with those, and that might actually depend on the easy_install version, is that by default they don't get installed directly inside Lib/site-packages but rather under a folder containing the full package name and having the .egg suffix. For example:  Lib/site-packages/django_celery-3.0.23-py2.7.egg
Each module coming from packages installed as above needs an individual entry in PYTHONPATH. If the packages are installed after PyDev has been installed on the system, the system PYTHONPATH needs to be updated in PyDev. That is done automatically by going to Window -> Preferences -> PyDev -> Select your intepreter -> in the python interpreters panel remove and re-add your current python interpreter (usually, this should be the python executable from the system). Then a PyDev restart (File -> Restart) should solve the "Unresolved import" errors.
문 제 는 easy설치 문제, pydev 를 설치 하기 전에 설 치 된 모듈 이 라면 문제 가 없 을 것 입 니 다.eclipse 가 pydev 를 설치 하고 easy 로insall 에 설 치 된 pydev 는 pydev 의 interpreter 를 다시 설정 하면 됩 니 다.
단계:
1. 원래 pydev 인 터 프 리터 삭제 (windows - > preference - > pydev - > interpreter)
2. interpreter 를 추가 하면 pydev 는 python 에서 libs 의 모든 모듈 을 자동 으로 검색 합 니 다. site - packages 의 모든 모듈 을 포함 합 니 다.
다른:
pydev 공식 설명:
http://pydev.org/manual_101_interpreter.html

좋은 웹페이지 즐겨찾기