python3: can't open file 'python3': [Errno 2] No such file or directory
Error
- pyspark를 jupyter notebook으로 사용을 하기 위해 환경변수 설정을 해주었고 다시 되돌리기 위해 환경변수를 제거 했지만 그대로 jupyter notebook으로 돌아감
- 결국 고치려다 다음과 같이 환경변수를 설정해줬지만 에러가 발생
#export PYSPARK_DRIVER_PYTHON=jupyter #export PYSPARK_DRIVER_PYTHON_OPTS=notebook export PYSPARK_DRIVER_PYTHON=python3 export PYSPARK_DRIVER_PYTHON_OPTS=python3
Error 해결
.bashrc
에서 두 줄을 주석처리 하였지만 env 명령어로 환경변수를 확인했을 때 그대로 남아 있었다.#export PYSPARK_DRIVER_PYTHON=jupyter #export PYSPARK_DRIVER_PYTHON_OPTS=notebook
- 계정을 나갔다 들어오거나 재부팅을 하면 환경변수가 사라진 것을 볼 수 있다.
- 위에서 난 에러는 쓸데 없이 python3를 붙여줘서 난 에러이다.
Author And Source
이 문제에 관하여(python3: can't open file 'python3': [Errno 2] No such file or directory), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@dldydrhkd/python3-cant-open-file-python3-Errno-2-No-such-file-or-directory저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)