Ubuntu
[Ubuntu] Python3을 사용할 경우 Terminator가 동작하지 않는 문제
yongee97
2022. 7. 22. 10:42
* 문제
python3을 기본 파이썬으로 설정하면 Terminator가 실행되지 않음
* 해결 방법
terminator의 기본 파이썬을 python2로 지정
sudo vi /usr/bin/terminator
첫번째 줄 내용이 아래와 같다면
#!/usr/bin/python
아래와 같이 python 뒤에 2를 붙여준다.
#!/usr/bin/python2
terminator not starting when default python is python3.4 but works if it is python2.7
On Ubuntu 15.10 when changing the symlink /usr/bin/python from python2.7 to python3.4 then terminator won t start anymore. Do you know what the problem could be and how to fix it? Thank you :)
askubuntu.com