From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pl0-f50.google.com (mail-pl0-f50.google.com [209.85.160.50]) by dpdk.org (Postfix) with ESMTP id 304BE2C6A for ; Thu, 16 Aug 2018 15:52:25 +0200 (CEST) Received: by mail-pl0-f50.google.com with SMTP id t17-v6so2130932ply.13 for ; Thu, 16 Aug 2018 06:52:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=subject:to:cc:references:from:message-id:date:user-agent :mime-version:in-reply-to:content-language:content-transfer-encoding; bh=CSAA46PSGZPBdcTH0DhTSMQ+2o2K+0rpdv6rNAv52iM=; b=C67PmjzIBbeC00jUrGmHkKd5+RrEqShQ/Ex0X5JaPGf/0ZZwcrXhmiAlINTW83KZdC NFQKy3IUhRgjJY3SnT0QId/KohU2qC4XlvMbxaboCD2mnfor3EVYv3vl7TRiOrzi1j8h y+CbCnW/0RnzMj2xjwui0+XLdeBPI74Q205Kdjnz3uDxRhpk+SGCRNOY/2KJYyHX/oTG eTULaD40Z5jw4MUog3UJSc4jK3z2cyW4AyC9Q7tLFyT63Z/kBkVuI3JT1+6Cx63iyYLE +lMbgN4cLabpwVz933iieNxtWUCP2zGCskN4Rubkps0xc9MWb6lBnmlOpQI6XG/agGVI fzqg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:cc:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=CSAA46PSGZPBdcTH0DhTSMQ+2o2K+0rpdv6rNAv52iM=; b=Wer+dMeXgnh8fG7kP8pRbjsN6DhCvlwpj1kqFrIrWPMkOmYcWgT8IJiLlPWpY3i6TL q1yqAr0cA37WwYN/mycimFKiISvIzxR+Nd/y0i5XntRHWTmPmWdtvXS+Iwrco3wKTHxo 19W5F+BZVO6k64OQeK60FBW3+3UNLQP9D4I1u2Vnq3ZBagayWsyPUjelC844vy8/L2cQ YYnCh51SIv8bewmHaPy3zfgUqjnbixPZA8UjMDIw7qY0oz0mofZ/c9k8jBDzubHMgQZh lkznwul3lQZmkInN35qwvIC9Rhn3Xbnjay6rYgXpHvnUXv1eCyr7/14s/aquHIeRlKZf g/IA== X-Gm-Message-State: AOUpUlGEmHc0HViiAxRVK6Oj8fSKV1a+VZbHS1D/MS538FiehhgYSKqc WkZ1nQEPI3C3ApPaAHNk+tbzaflh X-Google-Smtp-Source: AA+uWPw2von+ik/n7Dtoun8bBhFIcVJckSrp/Yb1AzATjnvRhJEGlmO9L16n3HfPKf8gYEw7xOqIKw== X-Received: by 2002:a17:902:654b:: with SMTP id d11-v6mr28847334pln.8.1534427544203; Thu, 16 Aug 2018 06:52:24 -0700 (PDT) Received: from mugwort.local (i218-47-243-143.s41.a026.ap.plala.or.jp. [218.47.243.143]) by smtp.gmail.com with ESMTPSA id s16-v6sm46737445pfd.0.2018.08.16.06.52.22 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 16 Aug 2018 06:52:23 -0700 (PDT) To: Ferruh Yigit Cc: Yasufumi Ogawa , dpdk-spp References: <7952f98f-8fcf-7634-6e6a-457d625456ce@intel.com> From: Yasufumi Ogawa Message-ID: <3dea2421-3114-cc43-2f92-571d33fb601a@gmail.com> Date: Thu, 16 Aug 2018 22:52:20 +0900 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 In-Reply-To: <7952f98f-8fcf-7634-6e6a-457d625456ce@intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [spp] python2 support X-BeenThere: spp@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Soft Patch Panel List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Aug 2018 13:52:25 -0000 Hi Ferruh, You are required to install 'future' module by running 'pip install future' for using 'queue' with both of Python 2 and 3. I should include this instruction in SPP documentation. I think I should add 'requirements.txt' to install all of required modules and not disturb users. I would like to send a patch for updating. Thanks, Yasufumi On 2018/08/16 19:43, Ferruh Yigit wrote: > Hi Yasufumi, > > When running spp with python2 I am getting following error [1] but works fine > with python3. > > Are you guys testing with python2 and is there any other module should I install > for python2? > > [1] > from queue import Queue > ImportError: No module named queue > > Thanks, > ferruh >