我正在尝试将克隆拉入pythonanywhere。
我跑:
git clone https://github.com/<your-github-username>/my-first-blog.git
我收到以下语法错误:
File < stdin>, line 1
git clone https://github.com/yavorcik/my-first-blog.git
^
SyntaxError: invalid syntax
不确定我在这里做错了什么。
答案 0 :(得分:5)
您正在其中一个Python控制台中发出该命令,而您应该在Bash控制台中发出该命令,因此出现错误信息,即这不是有效的Python代码。