Arch Linux / Virtualenv:系统升级后 Python 3.5 失败

Arch Linux / Virtualenv:系统升级后 Python 3.5 失败

我刚刚更新了我的 arch linux 系统。它将我的 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

相关内容