1

我正在使用 python 2.7.2 运行 Ubuntu。

脚本

python \
/home/blainer/Desktop/convert/converter.py \
/home/blainer/Desktop/convert/urban.shp \
/home/blainer/Desktop/convert/result.js \
--width 900 \
--country_name_index 4 \
--where "ISO = 'USA'" \
--codes_file /home/blainer/Desktop/convert/codes-en.tsv \
--insets '[{"codes": ["US-AK"], "width": 200, "left": 10, "top": 370}, {"codes": ["US-HI"], "width": 100, "left": 220, "top": 400}]' \
--minimal_area 4000000 \
--buffer_distance -3000 \
--simplify_tolerance 1000 \
--longtitude0 10w \
--name us

错误

blainer@ubuntu:~/Desktop/convert$ python script.py
File "script.py", line 5
--width 900 \
          ^
SyntaxError: invalid syntax
4

1 回答 1

6

这不是 Python 脚本,而是运行 Python 的 shell 脚本。

  1. 命名它script.sh,不是.py
  2. 在顶部添加一个“shebang”行:#!/bin/bash
  3. 使其可执行:chmod +x ./script.sh
  4. 运行:blainer@ubuntu:~/Desktop/convert$ ./script.sh
于 2012-04-17T20:18:28.590 回答