Python Unresolved import
1798 단어 python
인터넷 에서 자 료 를 찾 아 보 니 가방 안에 가방 이름과 같은 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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
로마 숫자를 정수로 또는 그 반대로 변환그 중 하나는 로마 숫자를 정수로 변환하는 함수를 만드는 것이었고 두 번째는 그 반대를 수행하는 함수를 만드는 것이었습니다. 문자만 포함합니다'I', 'V', 'X', 'L', 'C', 'D', 'M' ; 문자열이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.