DPDK usage discussions
 help / color / mirror / Atom feed
From: dawid_jurek <dawid_jurek@vp.pl>
To: "users@dpdk.org" <users@dpdk.org>
Subject: [dpdk-users] SyntaxError in setup.sh during binding ethernet device
Date: Tue, 19 Jan 2016 10:45:06 +0100	[thread overview]
Message-ID: <121884132-6808cdc3243c1d5e8d3c7d6646ce9ac1@pmq3v.m5r2.onet> (raw)

Hello DPDK developers,
I experienced issue when I ran tools/setup.sh and chose option [23]: Bind Ethernet device to IGB UIO module.
Script Output:
File ".../dpdk/dpdk-2.2.0/tools/dpdk_nic_bind.py", line 113
    """ % locals() # replace items from local variables
      ^
SyntaxError: invalid syntax
It turned out that python 2.7 set as default in system was needed.
So I added python2 to every line with dpdk_nic_bind.py call in tools/setup.sh and now it works fine.
But the question is: is it expected behaviour? Shouldn't it be fixed by simple patch in way I did it?
 
Regards,
Dawid
From thomas.monjalon@6wind.com  Tue Jan 19 11:20:56 2016
Return-Path: <thomas.monjalon@6wind.com>
Received: from mail-wm0-f52.google.com (mail-wm0-f52.google.com [74.125.82.52])
 by dpdk.org (Postfix) with ESMTP id ED85537A8
 for <users@dpdk.org>; Tue, 19 Jan 2016 11:20:55 +0100 (CET)
Received: by mail-wm0-f52.google.com with SMTP id r129so83601557wmr.0
 for <users@dpdk.org>; Tue, 19 Jan 2016 02:20:55 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=6wind-com.20150623.gappssmtp.com; s 150623;
 h=from:to:cc:subject:date:message-id:organization:user-agent
 :in-reply-to:references:mime-version:content-transfer-encoding
 :content-type; bh=vj5fH7jYQUvkSqWHEcnFw6cZUs4tqhjcykbcZLWo1tI=;
 b=i+bZr0eFQH5am4tMN7++IgBECTRciGlx2JHfP/j8P1a0gW56ueuvnmqbTzvZqRJRST
 CsYrxr7rq3fKQgK4ktRX4KEZLMOzfRf7CbLmyPzu3V4yg+EosI1MDHuWmk76khHM0y9J
 kEYcMsl3w0JdrkKGbzpx7Xih5Ei9yPN8IPLKHgq03bx9sTPkfa5uI3WUz/GVFhEpQDej
 IG9oqHdS/Nh2Aiw4qSA82WaG6SB6+IMVEbqeaHCFo7B8ZPLzUSweZ91WAIOZ8izV9PcJ
 j8LQhVNfejs24njvCWCdIqHAA4f8iQFtXTGZ5WqWPkNHSeTvfOTZZZ2tVnntgAFPckft
 44KQ=X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d\x1e100.net; s 130820;
 h=x-gm-message-state:from:to:cc:subject:date:message-id:organization
 :user-agent:in-reply-to:references:mime-version
 :content-transfer-encoding:content-type;
 bh=vj5fH7jYQUvkSqWHEcnFw6cZUs4tqhjcykbcZLWo1tI=;
 b=Us1Qb4WWlGfcX4CsoG8bMxnfuS8czwLeUg5Lfwbevk2Rtofr1BS/9BsFKHxL24pRAi
 /XELcpApxURq2Eyy03BXrwEVCY9auCxZUzjsQzVAvEGNirjqG+FN4eRbAM8jaa3KisRg
 MO3HYiw92MBfy68JwGBSZKKg5BZTdITR5/4m0jquUoCixEBhZfAbXck/+oIVEnJ4tS+E
 L+UeyYkDpqoM1vFRmy1lBl1XdN52MKf1A0cwy+2U1gOiW3un5hazlJIyt/bDfydric2v
 99pNguSLkflDbOUmOItqHqwDNq30HO+QVhBcouWUrcyIdeORqlMxKKr4jOeVicwjH6uM
 MGyQ=X-Gm-Message-State: AG10YOQVpDUCoVF7spDBlv1IaoLNpxdXXYIMmwoJTzYwsSV5a1JXnjf3xBEMCHYFB3rqE7aq
X-Received: by 10.28.21.6 with SMTP id 6mr19592955wmv.46.1453198855782;
 Tue, 19 Jan 2016 02:20:55 -0800 (PST)
Received: from xps13.localnet (guy78-3-82-239-227-177.fbx.proxad.net.
 [82.239.227.177])
 by smtp.gmail.com with ESMTPSA id jm4sm27814383wjb.7.2016.01.19.02.20.55
 (version=TLSv1/SSLv3 cipher=OTHER);
 Tue, 19 Jan 2016 02:20:55 -0800 (PST)
From: Thomas Monjalon <thomas.monjalon@6wind.com>
To: dawid_jurek <dawid_jurek@vp.pl>
Date: Tue, 19 Jan 2016 11:19:55 +0100
Message-ID: <2804006.FCTLJeXkXC@xps13>
Organization: 6WIND
User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; )
In-Reply-To: <121884132-6808cdc3243c1d5e8d3c7d6646ce9ac1@pmq3v.m5r2.onet>
References: <121884132-6808cdc3243c1d5e8d3c7d6646ce9ac1@pmq3v.m5r2.onet>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
Cc: users@dpdk.org
Subject: Re: [dpdk-users] SyntaxError in setup.sh during binding ethernet
	device
X-BeenThere: users@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: usage discussions <users.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/users>,
 <mailto:users-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/users/>
List-Post: <mailto:users@dpdk.org>
List-Help: <mailto:users-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/users>,
 <mailto:users-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Tue, 19 Jan 2016 10:20:56 -0000

Hi

2016-01-19 10:45, dawid_jurek:
> Hello DPDK developers,
> I experienced issue when I ran tools/setup.sh and chose option [23]: Bind Ethernet device to IGB UIO module.
> Script Output:
> File ".../dpdk/dpdk-2.2.0/tools/dpdk_nic_bind.py", line 113
>     """ % locals() # replace items from local variables
>       ^
> SyntaxError: invalid syntax
> It turned out that python 2.7 set as default in system was needed.
> So I added python2 to every line with dpdk_nic_bind.py call in tools/setup.sh and now it works fine.
> But the question is: is it expected behaviour? Shouldn't it be fixed by simple patch in way I did it?

Yes a patch would be appreciated to make it python 3 friendly.
Thanks

             reply	other threads:[~2016-01-19  9:47 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-19  9:45 dawid_jurek [this message]
2016-01-19 10:54 dawid_jurek
2016-01-27 13:44 dawid_jurek
2016-01-27 13:48 ` Thomas Monjalon
2016-01-29 13:00 dawid_jurek

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=121884132-6808cdc3243c1d5e8d3c7d6646ce9ac1@pmq3v.m5r2.onet \
    --to=dawid_jurek@vp.pl \
    --cc=users@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).