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



我正在尝试使用所有必需的库在Ubuntu映像容器上运行Python代码。

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

我正在命令行中运行代码。当我运行简单的Hello World代码时,它是有效的。

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

你好,世界!

但当我试图运行另一个需要各种库的脚本时,我会得到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

相关内容

  • 没有找到相关文章

最新更新