나는했다 :
sudo apt-get install golang git mercurial
버전 1.2.1을 성공적으로 설치했습니다. 불행히도 드라이브를 설치하려고했을 때 :
go get -u github.com/odeke-em/drive/cmd/drive
이 오류 가 발생 하여 이제 작동하려면 적어도 1.4 버전의 Go가 필요합니다. golang 문서에 따르면 기존 버전을 먼저 제거해야합니다.
그래서 나는 단순히 다음과 같이 사용하는 이 질문 을 보았습니다.
sudo apt-get purge golang
나 에게이 출력을 주었다.
The following packages will be REMOVED:
golang*
0 upgraded, 0 newly installed, 1 to remove and 16 not upgraded.
After this operation, 92.2 kB disk space will be freed.
Do you want to continue? [Y/n] Y
(Reading database ... 263287 files and directories currently installed.)
Removing golang (2:1.2.1-2ubuntu1) ...
(세 개의 점 뒤에는 더 이상 출력하지 않고 프롬프트로 돌아갑니다).
하지만 여전히 볼 수 go
있는 디렉토리를 /usr/lib/
, 그리고 여전히 거기에 또한 gopath
내 홈 디렉토리에있는 디렉토리.
내가 할 때 만들어 졌다고 생각합니다.
$ cat << ! >> ~/.bashrc
> export GOPATH=\$HOME/gopath
> export PATH=\$GOPATH:\$GOPATH/bin:\$PATH
> !
$ source ~/.bashrc # To reload the settings and get the newly set ones # Or open a fresh terminal
설치 중 (GOPATH 생성)
따라서 제거가 성공적으로 완료되었으며 최신 버전의 Go를 설치해도 안전한지 확실하지 않습니다.
우분투 14.04 LTS