실수로 alternatives --install /user/lib/python2.7/site-packages/pip pip /opt/anaconda/bin/pip
입력 했습니다 alternatives --install /usr/[...]
.
이제 다른 것으로 설정할 수 없거나 오류가 발생합니다.
failed to read link /user/lib/python2.7/site-packages/pip pip /opt/anaconda/bin/pip: no such file or directory
the primary link for pip must be /user/lib/python2.7/site-packages/pip
시도하면 기본적으로 동일한 메시지가 나타납니다.alternatives --remove pip /user/lib/python2.7/site-packages/pip
이 문제를 어떻게 해결할 수 있나요?
답변1
update alternatives --remove pip /opt/anaconda/bin/pip
이렇게 하면 잘못된 링크가 제거되고 올바른 링크를 추가할 수 있습니다.