2017-03-28 8 views
0

요 전날 나는 명령 파이썬이 파이썬 2 대신 파이썬 3을 시작하도록 기본 설정하기로 결정했다.업데이트 방법 - Python 3 대안을 깨지 말고 업데이트 하시겠습니까?

그래서 나는이 한 :

sudo update-alternatives --install /usr/bin/python python /usr/bin /python2.7 2 

sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.5 3 

sudo는 업데이트 - 대안 --config 파이썬

$ sudo update-alternatives --config python 
There are 2 choices for the alternative python (providing /usr/bin/python). 

    Selection Path    Priority Status 
------------------------------------------------------------ 
* 0   /usr/bin/python3.5 3   auto mode 
    1   /usr/bin/python2.7 2   manual mode 
    2   /usr/bin/python3.5 3   manual mode 

Press <enter> to keep the current choice[*], or type selection number: 0 

을 그리고 모든 일했다. 큰! :) 나는 그것을 설치하고 증발 python2 기다리고 있었다 경향이 있기 때문에 파이썬 패키지를 제거에 올 때 내가 APT/적성을 파괴했다 실현하기 전에

$ python -V 
Python 3.5.2 

는 그러나 그것은 오래되지 않았습니다.

이것은 일어난 일입니다.

$ sudo apt remove python-samba 
Reading package lists... Done 
Building dependency tree  
Reading state information... Done 
The following package was automatically installed and is no longer required: 
    samba-libs 
Use 'sudo apt autoremove' to remove it. 
The following packages will be REMOVED: 
    python-samba 
0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded. 
After this operation, 5,790 kB disk space will be freed. 
Do you want to continue? [Y/n] 
(Reading database ... 187285 files and directories currently installed.) 
Removing python-samba (2:4.3.11+dfsg-0ubuntu0.16.04.5) ... 
    File "/usr/bin/pyclean", line 63 
    except (IOError, OSError), e: 
          ^
SyntaxError: invalid syntax 
dpkg: error processing package python-samba (--remove): 
subprocess installed pre-removal script returned error exit status 1 
Traceback (most recent call last): 
    File "/usr/bin/pycompile", line 35, in <module> 
    from debpython.version import SUPPORTED, debsorted, vrepr, \ 
    File "/usr/share/python/debpython/version.py", line 24, in <module> 
    from ConfigParser import SafeConfigParser 
ImportError: No module named 'ConfigParser' 
dpkg: error while cleaning up: 
subprocess installed post-installation script returned error exit status 1 
Errors were encountered while processing: 
python-samba 
E: Sub-process /usr/bin/dpkg returned an error code (1) 

은 결국 나는 그것이 기본으로 python2 원 추측, 그래서 다음과 같이 내 변경을 취소 한 :

$ sudo update-alternatives --config python 
There are 2 choices for the alternative python (providing /usr/bin/python). 

    Selection Path    Priority Status 
------------------------------------------------------------ 
* 0   /usr/bin/python3.5 3   auto mode 
    1   /usr/bin/python2.7 2   manual mode 
    2   /usr/bin/python3.5 3   manual mode 

Press <enter> to keep the current choice[*], or type selection number: 1 

$ python -V 
Python 2.7.12 

을 그리고 쉽다는

$ sudo apt remove python-samba 
Reading package lists... Done 
Building dependency tree  
Reading state information... Done 
The following package was automatically installed and is no longer required: 
    samba-libs 
Use 'sudo apt autoremove' to remove it. 
The following packages will be REMOVED: 
    python-samba 
0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded. 
1 not fully installed or removed. 
After this operation, 5,790 kB disk space will be freed. 
Do you want to continue? [Y/n] 
(Reading database ... 187285 files and directories currently installed.) 
Removing python-samba (2:4.3.11+dfsg-0ubuntu0.16.04.5) ... 

다시 그래서 내가 떠나야 한 일 그것은 파이썬 2로 기본값으로하지만 파이썬 3에서 개발하고 파이썬 3 때 파이썬과 유휴를 실행할 때 내 시스템이 기본 싶습니다.

누구든지 적절한 방법으로 침입하지 않고이를 어떻게 달성 할 수 있습니까?

내 시스템은 라즈베리 파이 3B 실행 우분투입니다 :

Linux mymachine 4.4.38-v7+ #938 SMP Thu Dec 15 15:22:21 GMT 2016 armv7l armv7l armv7l GNU/Linux 

(그것은 사실의 팔 V8)

$ cat /etc/lsb-release 
DISTRIB_ID=Ubuntu 
DISTRIB_RELEASE=16.04 
DISTRIB_CODENAME=xenial 
DISTRIB_DESCRIPTION="Ubuntu 16.04.2 LTS" 

감사합니다! (? 일부 업데이트 후)

+2

python2를 가리키는'python '을 남겨 두거나 문제가 * lots * * 인 경우 –

+0

그래, 고마워, 나는 그만큼 생각했다. :) – Will

답변

0

은 어떻게 든 파이썬 3 다시 와서 적절한 업데이트 큰 문제를 일으키는, 그래서 대안에서 완전히 파이썬 3를 제거하기로 결정했습니다 :

데비안 정책에 따라
root:~# python -V 
Python 3.5.2 

root:~# update-alternatives --config python 
There are 2 choices for the alternative python (providing /usr/bin/python). 

    Selection Path    Priority Status 
------------------------------------------------------------ 
* 0   /usr/bin/python3.5 3   auto mode 
    1   /usr/bin/python2.7 2   manual mode 
    2   /usr/bin/python3.5 3   manual mode 


root:~# update-alternatives --remove python /usr/bin/python3.5 

root:~# update-alternatives --config python 
There is 1 choice for the alternative python (providing /usr/bin/python). 

    Selection Path    Priority Status 
------------------------------------------------------------ 
    0   /usr/bin/python2.7 2   auto mode 
* 1   /usr/bin/python2.7 2   manual mode 

Press <enter> to keep the current choice[*], or type selection number: 0 


root:~# python -V 
Python 2.7.12 

root:~# update-alternatives --config python 
There is only one alternative in link group python (providing /usr/bin/python): /usr/bin/python2.7 
Nothing to configure. 
+1

사실,'python3'은 파이썬 2를 참조해야하기 때문에'python'에 대한 유효한 대안이 아닙니다. – tripleee

1

, python Python 2를 말하며 python3은 Python 3을 가리 킵니다.이 시스템 전체를 변경하려고하지 마십시오. 이미 발견 한 문제가 있습니다.

가상 환경을 사용하면 시스템 파이썬 설치를 망칠 필요없이 원하는 버전의 파이썬과 필요한 라이브러리로 고립 된 파이썬 설치를 실행할 수 있습니다.

최근 Python 3에서 venv은 표준 라이브러리의 일부입니다. 이전 버전에서는 python3-venv 또는 유사한 패키지를 설치해야 할 수 있습니다.

$HOME~$ python --version 
Python 2.7.11 

$HOME~$ python3 -m venv myenv 
... stuff happens ... 

$HOME~$ . ./myenv/bin/activate 

(myenv) $HOME~$ type python # "type" is preferred over which; see POSIX 
python is /home/you/myenv/bin/python 

(myenv) $HOME~$ python --version 
Python 3.5.1 

일반적으로 작업하는 각 프로젝트마다 별도의 환경이 있어야합니다. 그러나 자신의 로그인에 대해 전체적으로 시스템 전체적으로 보이도록하려면 .profile 또는 유사하게 활성화 스탠자를 추가 할 수 있습니다.

1

대체

[bash:~] $ sudo update-alternatives --install /usr/bin/python python \ 
/usr/bin/python2.7 2 

[bash:~] $ sudo update-alternatives --install /usr/bin/python python \ 
/usr/bin/python3.5 3 

[bash:~] $ sudo update-alternatives --install /usr/local/bin/python \ 
/usr/bin/python2.7 2 

[bash:~] $ sudo update-alternatives --install /usr/local/bin/python \ 
/usr/bin/python3.5 

예컨대 /usr/bin 대신 /usr/local/bin에 설치하십시오.

그리고 /usr/local/bin이 PATH에 /usr/bin보다 앞에 오도록하십시오.

[bash:~] $ echo $PATH 
/usr/local/bin:/usr/bin:/bin 

이 있는지 확인은 항상 ~/.bashrc 파일의 끝에

export PATH=/usr/local/bin:$PATH 

를 추가하여 경우입니다. /usr/local/bin 또는 /opt/<some install>/bin과 같이 사용자 환경 bin 폴더에 PATH 환경 변수를 접두사로 붙이면 일반적으로 기본 시스템보다 먼저 사용자 지정 내용을 찾을 수 있습니다.