![Arch Linux/Virtualenv: 시스템 업그레이드 후 Python 3.5가 실패함](https://linux55.com/image/107502/Arch%20Linux%2FVirtualenv%3A%20%EC%8B%9C%EC%8A%A4%ED%85%9C%20%EC%97%85%EA%B7%B8%EB%A0%88%EC%9D%B4%EB%93%9C%20%ED%9B%84%20Python%203.5%EA%B0%80%20%EC%8B%A4%ED%8C%A8%ED%95%A8.png)
방금 아치 리눅스 시스템을 업데이트했습니다. Python 3.5를 3.6으로 업그레이드했습니다. 기본 환경에서 Python을 사용하면 정상적으로 작동합니다.
[yuanyin@YuanYin ~]$ python
Python 3.6.0 (default, Jan 16 2017, 12:12:55)
[GCC 6.3.1 20170109] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
하지만 일부 가상 환경에서 작업할 때 오류가 보고됩니다.
[yuanyin@YuanYin ~]$ workon transcats
(transcats) [yuanyin@YuanYin ~]$ python
python: error while loading shared libraries: libpython3.5m.so.1.0: cannot open shared object file: No such file or directory
가상 환경은 격리된 환경으로 작동하면 안 되나요?
Python을 에 다시 설치해야 합니까 virtualenv
?