반응형
python 포터블을 설치하는데 아래와 같은 에러가 났다.
./Scripts/pip.exe --version
ModuleNotFoundError: No module named 'pip'
아무리 찾아도 없다가 구세주를 만났다.
해결방법
python 포터블 깔린 폴더에서 python버전.pth 파일을 찾는다.
ex) python38._pth
연다. 아래같은게 나온다.
python38.zip
.
# Uncomment to run site.main() automatically
#import site
#import site 에서 주석을 해제 해준다. (# 제거)
python38.zip
.
# Uncomment to run site.main() automatically
import site
이제 다시 실행해보자.
잘된다.
import site ?
site 모듈이 활성화되어 파이썬이 기본적으로 site-packages 디렉토리를 모듈 검색 경로에 포함시킨다고 한다.
자동으로 찾나보다ㅁ
반응형
'Python' 카테고리의 다른 글
[Python] sqlalchemy select / db.query 차이 (feat. ORM) (0) | 2023.10.04 |
---|---|
[Python] 파이썬 포터블 설치 (embeddeble) (feat. windows) (0) | 2023.09.13 |
[python] 디버깅하기 & Error난 줄 찾기 (feat. traceback) (0) | 2023.06.15 |
[Python] SqlAlchemy 유용한 문법 (기초~중급?) (0) | 2023.04.26 |
[SQLAlchemy] schema에 따라 객체 변형해서 담기 (0) | 2023.03.29 |