Python - 如何获取有关 SyntaxError 的更多信息?

Python - How to get more info about SyntaxError?

我正在尝试 运行 Python 在 Ubuntu 包含所有必需库的图像容器上编码。

Bootstrap: docker
From: ubuntu

%post
apt-get -y update
apt-get -y install python python3-pip curl
pip3 install scikit-learn cython numpy pydot keras torch torchvision
pip3 install matplotlib pandas plotly nltk seaborn scrapy gensim tensorflow xgboost textblob
pip3 install gym kaggle-environments stable-baselines3

我在命令行中 运行ning 代码。当我 运行 简单的 Hello World 代码时,它起作用了。

cat hello.py | singularity exec connectx.simg  /usr/bin/python

Hello World!

但是当我尝试 运行 另一个需要各种库的脚本时,我得到 SyntaxError:

cat training3.py | singularity exec connectx.simg  /usr/bin/python
  File "<stdin>", line 26
    def __init__(self, observation_space: gym.spaces.Box, features_dim: int = 512):
                                        ^
SyntaxError: invalid syntax

我不清楚是什么导致了 SyntaxError。我怎样才能获得有关此错误的更多信息?

试试这个:

cat training3.py | singularity exec connectx.simg  /usr/bin/python3