<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Python can't find the mvnc Module in Intel® Distribution of OpenVINO™ Toolkit</title>
    <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662478#M3255</link>
    <description>&lt;P&gt;@chicagobob123 I'll make the edit. Thanks. &lt;/P&gt;</description>
    <pubDate>Tue, 25 Sep 2018 06:24:11 GMT</pubDate>
    <dc:creator>idata</dc:creator>
    <dc:date>2018-09-25T06:24:11Z</dc:date>
    <item>
      <title>Python can't find the mvnc Module</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662459#M3236</link>
      <description>&lt;P&gt;I've been trying to setup the movidius library created by intel, but I keep getting stuck when I try to import the mvnc package. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To set up mvnc I followed the directions here:  &lt;A href="https://www.pyimagesearch.com/2018/02/19/real-time-object-detection-on-the-raspberry-pi-with-the-movidius-ncs/"&gt;https://www.pyimagesearch.com/2018/02/19/real-time-object-detection-on-the-raspberry-pi-with-the-movidius-ncs/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and when it comes time to test if the install works, I run&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;  &lt;P&gt;make examples&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;which gives this error whenever I run it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;CODE&gt;Traceback (most recent call last):
  File "/usr/local/bin/mvNCCompile", line 25, in &amp;lt;module&amp;gt;
    from Models.Blob import *
  File "/usr/local/bin/ncsdk/Models/Blob.py", line 19, in &amp;lt;module&amp;gt;
    from Controllers.MiscIO import *
  File "/usr/local/bin/ncsdk/Controllers/MiscIO.py", line 35, in &amp;lt;module&amp;gt;
    from mvnc import mvncapi
&lt;/CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I'm wondering how it would be possible to get python to recognize the mvnc module so I can import it into any of my code. Thank you for your help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm running Ubuntu 18.04.1 LTS in a virtual machine on a windows 10 computer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the full command line output:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;CODE&gt;./install-opencv.sh
Installing opencv python for non-Raspbian
[sudo] password for odyssey: 
Requirement already satisfied: opencv-python in /usr/local/lib/python3.6/dist-packages
Requirement already satisfied: numpy&amp;gt;=1.11.3 in /usr/lib/python3/dist-packages (from opencv-python)
Requirement already satisfied: opencv-contrib-python in /usr/local/lib/python3.6/dist-packages
Requirement already satisfied: numpy&amp;gt;=1.11.3 in /usr/lib/python3/dist-packages (from opencv-contrib-python)

make examples starting.
(cd examples; make)
make[1]: Entering directory '/home/odyssey/workspace/ncsdk/examples'
make -C apps/. 
make[2]: Entering directory '/home/odyssey/workspace/ncsdk/examples/apps'
make -C hello_ncs_py/. 
make[3]: Entering directory '/home/odyssey/workspace/ncsdk/examples/apps/hello_ncs_py'
nothing to make, use 'make run' to run.
make[3]: Leaving directory '/home/odyssey/workspace/ncsdk/examples/apps/hello_ncs_py'
make -C multistick_cpp/. 
make[3]: Entering directory '/home/odyssey/workspace/ncsdk/examples/apps/multistick_cpp'

making googlenet
(cd ../../caffe/GoogLeNet; make compile; cd ../../apps/multistick_cpp; cp ../../caffe/GoogLeNet/graph ./googlenet.graph;)
make[4]: Entering directory '/home/odyssey/workspace/ncsdk/examples/caffe/GoogLeNet'

making prereqs
(cd ../../data/ilsvrc12; make)
make[5]: Entering directory '/home/odyssey/workspace/ncsdk/examples/data/ilsvrc12'
make[5]: Leaving directory '/home/odyssey/workspace/ncsdk/examples/data/ilsvrc12'

making prototxt
Prototxt file already exists

making caffemodel
caffemodel file already exists

making compile
mvNCCompile -w bvlc_googlenet.caffemodel -s 12 deploy.prototxt
Traceback (most recent call last):
  File "/usr/local/bin/mvNCCompile", line 25, in &amp;lt;module&amp;gt;
    from Models.Blob import *
  File "/usr/local/bin/ncsdk/Models/Blob.py", line 19, in &amp;lt;module&amp;gt;
    from Controllers.MiscIO import *
  File "/usr/local/bin/ncsdk/Controllers/MiscIO.py", line 35, in &amp;lt;module&amp;gt;
    from mvnc import mvncapi
ModuleNotFoundError: No module named 'mvnc'
Makefile:80: recipe for target 'compile' failed
make[4]: *** [compile] Error 1
make[4]: Leaving directory '/home/odyssey/workspace/ncsdk/examples/caffe/GoogLeNet'
cp: cannot stat '../../caffe/GoogLeNet/graph': No such file or directory
Makefile:9: recipe for target 'googlenet' failed
make[3]: *** [googlenet] Error 1
make[3]: Leaving directory '/home/odyssey/workspace/ncsdk/examples/apps/multistick_cpp'
Makefile:12: recipe for target 'multistick_cpp/.' failed
make[2]: *** [multistick_cpp/.] Error 2
make[2]: Leaving directory '/home/odyssey/workspace/ncsdk/examples/apps'
Makefile:12: recipe for target 'apps/.' failed
make[1]: *** [apps/.] Error 2
make[1]: Leaving directory '/home/odyssey/workspace/ncsdk/examples'
Makefile:57: recipe for target 'examples' failed
make: *** [examples] Error 2
&lt;/CODE&gt;</description>
      <pubDate>Wed, 12 Sep 2018 22:11:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662459#M3236</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-09-12T22:11:44Z</dc:date>
    </item>
    <item>
      <title>Re: Python can't find the mvnc Module</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662460#M3237</link>
      <description>&lt;P&gt;@Cynopolis Were you able to install the NCSDK successfully? Can you post the install log here? After a successful installation, make sure you run make examples in a new terminal window so that the pythonpath is set. You can check the pythonpath after installation by opening a new terminal window and typing in the following command: &lt;CODE&gt;echo $PYTHONPATH&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Sep 2018 00:59:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662460#M3237</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-09-13T00:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: Python can't find the mvnc Module</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662461#M3238</link>
      <description>&lt;P&gt;Sure, I added a link to the install log because it's too long to just paste in. The install did go successfully.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;and this is the output I get when I run &lt;CODE&gt;echo $PYTHONPATH&lt;/CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;CODE&gt;:/opt/movidius/caffe/python&lt;/CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the link to the install log:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;A href="https://drive.google.com/open?id=1q2FmC9aB2h_wvS8FiGnBV7kFE88RNdo9"&gt;https://drive.google.com/open?id=1q2FmC9aB2h_wvS8FiGnBV7kFE88RNdo9&lt;/A&gt;</description>
      <pubDate>Fri, 14 Sep 2018 03:55:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662461#M3238</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-09-14T03:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: Python can't find the mvnc Module</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662462#M3239</link>
      <description>&lt;P&gt;@Cynopolis Okay it looks like your install was successful. Can you do me a favor and go into one of the example folders like AgeNet, GenderNet or SqueezeNet and type in the command &lt;CODE&gt;make run&lt;/CODE&gt; and see if it is able to run correctly? Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Sep 2018 06:42:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662462#M3239</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-09-14T06:42:50Z</dc:date>
    </item>
    <item>
      <title>Re: Python can't find the mvnc Module</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662463#M3240</link>
      <description>&lt;CODE&gt;making prereqs
(cd ../../data/ilsvrc12; make)
make[1]: Entering directory '/home/odyssey/workspace/ncsdk/examples/data/ilsvrc12'
make[1]: Leaving directory '/home/odyssey/workspace/ncsdk/examples/data/ilsvrc12'

making prototxt
Prototxt file already exists

making caffemodel
caffemodel file already exists

making compile
mvNCCompile -w bvlc_googlenet.caffemodel -s 12 deploy.prototxt
Traceback (most recent call last):
  File "/usr/local/bin/mvNCCompile", line 25, in &amp;lt;module&amp;gt;
    from Models.Blob import *
  File "/usr/local/bin/ncsdk/Models/Blob.py", line 19, in &amp;lt;module&amp;gt;
    from Controllers.MiscIO import *
  File "/usr/local/bin/ncsdk/Controllers/MiscIO.py", line 35, in &amp;lt;module&amp;gt;
    from mvnc import mvncapi
ModuleNotFoundError: No module named 'mvnc'
Makefile:80: recipe for target 'compile' failed
make: *** [compile] Error 1
&lt;/CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That's the error I get when I try to run GoogLeNet, I also tried both AlexNet and SqueezeNet and I get the same problem.&lt;/P&gt;</description>
      <pubDate>Sat, 15 Sep 2018 04:35:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662463#M3240</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-09-15T04:35:44Z</dc:date>
    </item>
    <item>
      <title>Re: Python can't find the mvnc Module</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662464#M3241</link>
      <description>&lt;P&gt;Does anyone know how I could solve this problem? I'm thinking python doesn't know where the &lt;A href="http://mvncapi.py"&gt;mvncapi.py&lt;/A&gt;  file is, so is there a way to point it to that file?&lt;/P&gt;</description>
      <pubDate>Sun, 16 Sep 2018 09:19:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662464#M3241</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-09-16T09:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: Python can't find the mvnc Module</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662465#M3242</link>
      <description>&lt;P&gt;@Cynopolis &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;How is your environment variable registered?&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;CODE&gt;$ sudo find / -name mvncapi.py
/usr/local/lib/python3.5/dist-packages/mvnc/mvncapi.py
/usr/local/lib/python2.7/dist-packages/mvnc/mvncapi.py
/home/xxxx/ncsdk/api/python/mvnc/mvncapi.py
/opt/movidius/NCSDK/ncsdk-armv7l/api/python/mvnc/mvncapi.py
/opt/movidius/NCSDK/ncsdk-x86_64/api/python/mvnc/mvncapi.py
&lt;/CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is mine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;CODE&gt;$ echo $PYTHONPATH
:/opt/movidius/caffe/python:/usr/local/lib
&lt;/CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If "/usr/local/lib" is not displayed, the environment is wrong.&lt;/P&gt;</description>
      <pubDate>Sun, 16 Sep 2018 09:58:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662465#M3242</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-09-16T09:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: Python can't find the mvnc Module</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662466#M3243</link>
      <description>&lt;P&gt;Here's my out put for&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;CODE&gt;sudo find / -name mvncapi.py
[sudo] password for odyssey: 
/home/odyssey/.local/share/Trash/files/workspace/ncsdk/api/python/mvnc/mvncapi.py
/home/odyssey/workspace/ncsdk/api/python/mvnc/mvncapi.py
/home/odyssey/workspace/mvncsdk/ncsdk-1.12.00.01/api/python/mvnc/mvncapi.py
find: ‘/run/user/1000/gvfs’: Permission denied
/opt/movidius/NCSDK/ncsdk-armv7l/api/python/mvnc/mvncapi.py
/opt/movidius/NCSDK/ncsdk-x86_64/api/python/mvnc/mvncapi.py
/usr/local/lib/python3.6/dist-packages/mvnc/mvncapi.py
/usr/local/lib/python2.7/dist-packages/mvnc/mvncapi.py
&lt;/CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and here's my output for &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;CODE&gt;echo $PYTHONPATH
:/opt/movidius/caffe/python
&lt;/CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;as you can see "usr/local/lib" isn't there, is there a way to fix that?&lt;/P&gt;</description>
      <pubDate>Mon, 17 Sep 2018 06:26:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662466#M3243</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-09-17T06:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: Python can't find the mvnc Module</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662467#M3244</link>
      <description>&lt;P&gt;@Cynopolis &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;CODE&gt;$ export PYTHONPATH=$PYTHONPATH:/usr/local/lib:/usr/local/lib/python3.6/dist-packages/mvnc
&lt;/CODE&gt;</description>
      <pubDate>Mon, 17 Sep 2018 06:44:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662467#M3244</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-09-17T06:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: Python can't find the mvnc Module</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662468#M3245</link>
      <description>&lt;P&gt;I ran that command and now my python path looks like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;CODE&gt;echo $PYTHONPATH
:/opt/movidius/caffe/python:/usr/local/lib:/usr/local/lib/python3.6/dist-packages/mvnc
&lt;/CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but I ran make examples, and still got the same error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;CODE&gt;./install-opencv.sh
Installing opencv python for non-Raspbian
[sudo] password for odyssey: 
Requirement already satisfied: opencv-python in /usr/local/lib/python3.6/dist-packages
Requirement already satisfied: numpy&amp;gt;=1.11.3 in /usr/lib/python3/dist-packages (from opencv-python)
Requirement already satisfied: opencv-contrib-python in /usr/local/lib/python3.6/dist-packages
Requirement already satisfied: numpy&amp;gt;=1.11.3 in /usr/lib/python3/dist-packages (from opencv-contrib-python)

make examples starting.
(cd examples; make)
make[1]: Entering directory '/home/odyssey/workspace/ncsdk/examples'
make -C apps/. 
make[2]: Entering directory '/home/odyssey/workspace/ncsdk/examples/apps'
make -C hello_ncs_py/. 
make[3]: Entering directory '/home/odyssey/workspace/ncsdk/examples/apps/hello_ncs_py'
nothing to make, use 'make run' to run.
make[3]: Leaving directory '/home/odyssey/workspace/ncsdk/examples/apps/hello_ncs_py'
make -C multistick_cpp/. 
make[3]: Entering directory '/home/odyssey/workspace/ncsdk/examples/apps/multistick_cpp'

making googlenet
(cd ../../caffe/GoogLeNet; make compile; cd ../../apps/multistick_cpp; cp ../../caffe/GoogLeNet/graph ./googlenet.graph;)
make[4]: Entering directory '/home/odyssey/workspace/ncsdk/examples/caffe/GoogLeNet'

making prereqs
(cd ../../data/ilsvrc12; make)
make[5]: Entering directory '/home/odyssey/workspace/ncsdk/examples/data/ilsvrc12'
make[5]: Leaving directory '/home/odyssey/workspace/ncsdk/examples/data/ilsvrc12'

making prototxt
Prototxt file already exists

making caffemodel
caffemodel file already exists

making compile
mvNCCompile -w bvlc_googlenet.caffemodel -s 12 deploy.prototxt
Traceback (most recent call last):
  File "/usr/local/bin/mvNCCompile", line 25, in &amp;lt;module&amp;gt;
    from Models.Blob import *
  File "/usr/local/bin/ncsdk/Models/Blob.py", line 19, in &amp;lt;module&amp;gt;
    from Controllers.MiscIO import *
  File "/usr/local/bin/ncsdk/Controllers/MiscIO.py", line 35, in &amp;lt;module&amp;gt;
    from mvnc import mvncapi
ImportError: cannot import name 'mvncapi'
Makefile:80: recipe for target 'compile' failed
make[4]: *** [compile] Error 1
make[4]: Leaving directory '/home/odyssey/workspace/ncsdk/examples/caffe/GoogLeNet'
cp: cannot stat '../../caffe/GoogLeNet/graph': No such file or directory
Makefile:9: recipe for target 'googlenet' failed
make[3]: *** [googlenet] Error 1
make[3]: Leaving directory '/home/odyssey/workspace/ncsdk/examples/apps/multistick_cpp'
Makefile:12: recipe for target 'multistick_cpp/.' failed
make[2]: *** [multistick_cpp/.] Error 2
make[2]: Leaving directory '/home/odyssey/workspace/ncsdk/examples/apps'
Makefile:12: recipe for target 'apps/.' failed
make[1]: *** [apps/.] Error 2
make[1]: Leaving directory '/home/odyssey/workspace/ncsdk/examples'
Makefile:57: recipe for target 'examples' failed
make: *** [examples] Error 2
&lt;/CODE&gt;</description>
      <pubDate>Mon, 17 Sep 2018 23:32:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662468#M3245</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-09-17T23:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: Python can't find the mvnc Module</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662469#M3246</link>
      <description>&lt;P&gt;@Cynopolis Maybe your bash .profile file isn't loading your .bashrc file. &lt;A href="https://askubuntu.com/questions/161249/bashrc-not-executed-when-opening-new-terminal"&gt;https://askubuntu.com/questions/161249/bashrc-not-executed-when-opening-new-terminal&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Sep 2018 06:23:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662469#M3246</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-09-18T06:23:33Z</dc:date>
    </item>
    <item>
      <title>Re: Python can't find the mvnc Module</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662470#M3247</link>
      <description>&lt;P&gt;I checked to see if both .bashrc and .profile existed in my home folder, and they do. By the looks of it, the .profile  script is correctly locating the .bachrc file and loading it. Here's that code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;CODE&gt;# if running bash
if [ -n "$BASH_VERSION" ]; then
    # include .bashrc if it exists
    if [ -f "$HOME/.bashrc" ]; then
        . "$HOME/.bashrc"
    fi
fi
&lt;/CODE&gt;</description>
      <pubDate>Tue, 18 Sep 2018 12:01:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662470#M3247</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-09-18T12:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: Python can't find the mvnc Module</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662471#M3248</link>
      <description>&lt;P&gt;@Cynopolis It could be related to line endings depending on how you got the NCSDK. I recommend removing and re-downloading the NCSDK. Try the following steps:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI&gt;Uninstall your current NCSDK by using the &lt;A href="http://uninstall.sh"&gt;uninstall.sh&lt;/A&gt; script in the ncsdk folder.&lt;/LI&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI&gt;Delete your current NCSDK folder.&lt;/LI&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI&gt;Get a new copy of the NCSDK files using the command: &lt;CODE&gt;wget https://ncs-forum-uploads.s3.amazonaws.com/ncsdk/ncsdk-01_12_00_01-full/ncsdk-1.12.00.01.tar.gz&lt;/CODE&gt;&lt;/LI&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI&gt;Extract the files using the command &lt;CODE&gt;tar xvf ncsdk-1.12.00.01.tar.gz&lt;/CODE&gt;&lt;/LI&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI&gt;Install the NCSDK by typing in &lt;CODE&gt;cd ncsdk-1.12.00.01&lt;/CODE&gt; and then &lt;CODE&gt;make install&lt;/CODE&gt;&lt;/LI&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI&gt;Afterwards, try typing in the command: &lt;CODE&gt;make examples&lt;/CODE&gt;&lt;/LI&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if this works for you. &lt;/P&gt;</description>
      <pubDate>Tue, 18 Sep 2018 23:34:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662471#M3248</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-09-18T23:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: Python can't find the mvnc Module</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662472#M3249</link>
      <description>&lt;P&gt;I have the same issue but have been waiting for a reply. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Isn't this going back to version 1 of the SDK? Not version 2?</description>
      <pubDate>Wed, 19 Sep 2018 05:21:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662472#M3249</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-09-19T05:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: Python can't find the mvnc Module</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662473#M3250</link>
      <description>&lt;P&gt;I am also facing the exact problem. Make install successful but make examples failed. I tried several ways to make it run. None of the ways is working! &lt;/P&gt;</description>
      <pubDate>Fri, 21 Sep 2018 01:07:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662473#M3250</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-09-21T01:07:47Z</dc:date>
    </item>
    <item>
      <title>Re: Python can't find the mvnc Module</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662474#M3251</link>
      <description>&lt;P&gt;@mthakkar Hi, have you tried going through each of the steps I listed above to see if they work for you? Please try each step even if it seems redundant and I'd appreciate it if you could let me know if it works/doesn't work. Thanks. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;@chicagobob123 Yeah, this was for NCSDK v1.12 as that is the version being installed by Cynopolis. If NCSDK v2.05 is desired, you can just replace the wget command with: &lt;CODE&gt;wget https://ncs-forum-uploads.s3.amazonaws.com/ncsdk/ncsdk-02_05_00_02-full/ncsdk-2.05.00.02.tar.gz&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Sep 2018 22:52:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662474#M3251</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-09-21T22:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: Python can't find the mvnc Module</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662475#M3252</link>
      <description>&lt;P&gt;I will try and reinstall the thing from scratch this asap. Let you know. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Something is going on. I traced the path down and there was no mnvc anything to compile anything.&lt;P&gt;&amp;nbsp;&lt;/P&gt;Not sure whats going on. The installations seem more unstable now than ever.</description>
      <pubDate>Fri, 21 Sep 2018 23:54:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662475#M3252</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-09-21T23:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: Python can't find the mvnc Module</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662476#M3253</link>
      <description>&lt;P&gt;@chicagobob123 I just tried installing NCSDK 2.05.00.02 on a fresh machine and using steps 3-6 (but for ncsdk 2.05) from above and I didn't have any issues. This was on an HP Envy laptop running Ubuntu 16.04. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI&gt;Get a new copy of the NCSDK files using the command: &lt;CODE&gt;wget https://ncs-forum-uploads.s3.amazonaws.com/ncsdk/ncsdk-02_05_00_02-full/ncsdk-2.05.00.02.tar.gz&lt;/CODE&gt;&lt;/LI&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI&gt;Extract the files using the command &lt;CODE&gt;tar xvf ncsdk-2.05.00.02.tar.gz&lt;/CODE&gt;&lt;/LI&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI&gt;Install the NCSDK by typing in &lt;CODE&gt;cd ncsdk-2.05.00.02&lt;/CODE&gt; and then &lt;CODE&gt;make install&lt;/CODE&gt;&lt;/LI&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI&gt;Afterwards, plug your NCS device into your machine and try typing in the command &lt;CODE&gt;make examples&lt;/CODE&gt;&lt;/LI&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/OL&gt;</description>
      <pubDate>Tue, 25 Sep 2018 00:58:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662476#M3253</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-09-25T00:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: Python can't find the mvnc Module</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662477#M3254</link>
      <description>&lt;P&gt;I got through this and it seems to work. You had the instructions down pretty good except you didn't mention I needed the stick plugged in to build. I know it should have been a given, just saying that it needs to be plugged in.  Now back to getting my Pi working again.  &lt;/P&gt;</description>
      <pubDate>Tue, 25 Sep 2018 04:42:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662477#M3254</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-09-25T04:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: Python can't find the mvnc Module</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662478#M3255</link>
      <description>&lt;P&gt;@chicagobob123 I'll make the edit. Thanks. &lt;/P&gt;</description>
      <pubDate>Tue, 25 Sep 2018 06:24:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Python-can-t-find-the-mvnc-Module/m-p/662478#M3255</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-09-25T06:24:11Z</dc:date>
    </item>
  </channel>
</rss>

