
방금 아치 리눅스 시스템을 업데이트했습니다. 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
?