如何在 ubuntu 18.04 上将 VSCode Python 解释器更改为 Linux 终端?

How do I change VSCode Python interpreter to Linux terminal on ubuntu 18.04?

所以我一直在努力

import pandas as pd

以及

from tensorflow.keras.utils import to_categorical
from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import Dence, Dropout

from sklearn.model_selection import train_test_split
from sklearn import preprocessing

这些是我的深度学习训练数据中的代码段。我已经阅读了我在终端上安装 pandas 和 tensorflow 的解决方案,这与 vscode 上的 python 运行 不同。

感谢任何帮助,因为我是编码新手。

通过调用以下命令找出您的终端中使用了哪个 python 解释器:

which python

(或 python3 如果您使用 Python 3)

在VS Code中,按Ctrl+Shift+P调出命令调色板和 运行 命令 Python: Select Interpreter:

从第一个命令的输出中选择一个。现在终端和VS Code应该使用相同的环境了。