728x90
아래와 같은 에러가 발생한다면 /usr/bin/python에 대한 심볼릭 링크가 걸려있지 않기 때문입니다.
/usr/bin/python: bad interpreter: No such file or directory
아래와 같이 심볼릭 링크를 생성하면 문제를 해결할 수 있습니다.
ln -s /usr/bin/python2.7 /usr/bin/python
관련된 명령어는 아래와 같습니다.
심볼릭 링크 조회
ls -l /usr/bin/py*
심볼릭 링크 삭제
rm -f /usr/bin/python2.6
심볼릭 링크 생성
ln -s /usr/bin/python2.7 /usr/bin/python
728x90
'리눅스(Linux)' 카테고리의 다른 글
vi에서 붙여넣기 할 때 indent가 깨지는 경우 조치 방법 (0) | 2021.04.16 |
---|---|
검색된 파일 전체 복사하기 (0) | 2018.01.18 |
Java HotSpot(TM) 64-Bit Server VM warning: INFO: os::commit_memory failed; error='Cannot allocate memory' (errno=12) 에러 발생 시 (0) | 2018.01.04 |
centos에서 anaconda 위에 keras 설치 (0) | 2018.01.03 |
Yum으로 설치 시 Error downloading packages [Errno 5] [Errno 2] No such file or directory 에러 발생 문제 해결하기 (0) | 2018.01.02 |