gddxz
gddxz

Reputation: 35

Installing basemap: setup.py encounters an error

I followed the rules here to install basemap step by step. But error occured at last.

When I typed the command: python setup.py, an erorr appears as follows:

gddxz@ubuntu:~/Downloads/basemap-1.0.7$ python setup.py
Traceback (most recent call last):
  File "setup.py", line 92, in <module>
    if sys.argv[1] not in ['sdist','clean']:
IndexError: list index out of range
gddxz@ubuntu:~/Downloads/basemap-1.0.7$ 

If there is anyone encountering the similar problem? Any help will be much appreciated!

Upvotes: 0

Views: 461

Answers (2)

benefeela
benefeela

Reputation: 11

seems to have worked: 'python setup.py install'

Upvotes: 1

Manolo Santos
Manolo Santos

Reputation: 1913

The problem is that this command requires at least one parameter. According to the instructions you should execute python setup.py install.

Upvotes: 0

Related Questions