如何在虚拟环境中使用系统安装的 python 软件包?

How can I use a system installed python package within a virtual environment?

我在 Ubuntu 服务器上使用 jupyter notebook。要从我的本地计算机连接,我使用的是 ssh 隧道。

jupyter安装在虚拟环境中

此服务器安装了tensorflow,它是使用bazel 从源代码编译安装的,以便与服务器的特定硬件兼容。我希望能够在我的虚拟环境中使用安装的 tensorflow。

我该怎么做?

我找到了答案here

只需删除 no-global-site-packages.txt 文件即可。难以置信的简单!