skip to Main Content

I’m totally new to command line and am trying to follow the instructions here to get OBITools installed. I’ve gotten part way through, but I am getting an error I don’t understand when trying to download the OBITools install file. The code presented in the tutorial is:

wget http://metabarcoding.org//obitools/doc/_downloads/get-obitools.py python get-obitools.py

I am getting the following error:
>>> wget http://metabarcoding.org//obitools/doc/_downloads/get-obitools.py File "<stdin>", line 1 wget http://metabarcoding.org//obitools/doc/_downloads/get-obitools.py ^ SyntaxError: invalid syntax

I’m not sure what I’m doing wrong? Any help is much appreciated!

2

Answers


  1. You’re not supposed to type those lines at the python shell (the one with >>>), you’re supposed to type those into your regular bash shell (the one with $).

    Login or Signup to reply.
  2. Type exit() to quit from the python shell and try again

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search