How to co-install libpython3.5 with libpython3.6 and libpython3.7












0















My employer recently purchased a CamBoard pico flexx infrared camera, and now I need to install the drivers for it on my machine.



Eventually I plan to use this with python and opencv2, so naturally I started looking at the python installation instructions where it specifies the following:




Linux installation



On Ubuntu and Debian, install python3-matplotlib and its dependencies.



You also need the libpython3.x package for the same minor version of
python3.x that the roypy library was built for. In Debian and Ubuntu
the libpython3.5, libpython3.6 and libpython3.7 libraries are all
co-installable. For example, if running a sample fails with:



ImportError: libpython3.5m.so.1.0: cannot open shared object file: No such file or directory


then the libpython3.5 package is required.




I have python 3.6.7 installed on my system along with libpython3.6, which I figured would work, but when I ran roypy.py, it still returns the same the above import error, but when I use



apt install libpython3.5


I get this:



Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting 'libpython3.5-stdlib' for regex 'libpython3.5'
Note, selecting 'libpython3.5-minimal' for regex 'libpython3.5'
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.


So how do I co-install libpython3.5 alongside libpython3.6?



Here is a link to the driver I need to install: https://drive.google.com/open?id=1URsXZYvZnm6GHiCgMOFORyeOWIu0chH9



To install the driver, you need to navigate to ./driver/udev/ and do the following:




If you are using ubuntu, copy the .rules file to /etc/udev/rules.d/ to
use pmd devices without administrative privileges (you will need root
rights once to copy the file to the destination):



sudo cp 10-royale-ubuntu.rules /etc/udev/rules.d



Please make sure that the user is in the group plugdev!



After copying the udev rule, please unplug and reinsert the camera.











share|improve this question



























    0















    My employer recently purchased a CamBoard pico flexx infrared camera, and now I need to install the drivers for it on my machine.



    Eventually I plan to use this with python and opencv2, so naturally I started looking at the python installation instructions where it specifies the following:




    Linux installation



    On Ubuntu and Debian, install python3-matplotlib and its dependencies.



    You also need the libpython3.x package for the same minor version of
    python3.x that the roypy library was built for. In Debian and Ubuntu
    the libpython3.5, libpython3.6 and libpython3.7 libraries are all
    co-installable. For example, if running a sample fails with:



    ImportError: libpython3.5m.so.1.0: cannot open shared object file: No such file or directory


    then the libpython3.5 package is required.




    I have python 3.6.7 installed on my system along with libpython3.6, which I figured would work, but when I ran roypy.py, it still returns the same the above import error, but when I use



    apt install libpython3.5


    I get this:



    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    Note, selecting 'libpython3.5-stdlib' for regex 'libpython3.5'
    Note, selecting 'libpython3.5-minimal' for regex 'libpython3.5'
    0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.


    So how do I co-install libpython3.5 alongside libpython3.6?



    Here is a link to the driver I need to install: https://drive.google.com/open?id=1URsXZYvZnm6GHiCgMOFORyeOWIu0chH9



    To install the driver, you need to navigate to ./driver/udev/ and do the following:




    If you are using ubuntu, copy the .rules file to /etc/udev/rules.d/ to
    use pmd devices without administrative privileges (you will need root
    rights once to copy the file to the destination):



    sudo cp 10-royale-ubuntu.rules /etc/udev/rules.d



    Please make sure that the user is in the group plugdev!



    After copying the udev rule, please unplug and reinsert the camera.











    share|improve this question

























      0












      0








      0








      My employer recently purchased a CamBoard pico flexx infrared camera, and now I need to install the drivers for it on my machine.



      Eventually I plan to use this with python and opencv2, so naturally I started looking at the python installation instructions where it specifies the following:




      Linux installation



      On Ubuntu and Debian, install python3-matplotlib and its dependencies.



      You also need the libpython3.x package for the same minor version of
      python3.x that the roypy library was built for. In Debian and Ubuntu
      the libpython3.5, libpython3.6 and libpython3.7 libraries are all
      co-installable. For example, if running a sample fails with:



      ImportError: libpython3.5m.so.1.0: cannot open shared object file: No such file or directory


      then the libpython3.5 package is required.




      I have python 3.6.7 installed on my system along with libpython3.6, which I figured would work, but when I ran roypy.py, it still returns the same the above import error, but when I use



      apt install libpython3.5


      I get this:



      Reading package lists... Done
      Building dependency tree
      Reading state information... Done
      Note, selecting 'libpython3.5-stdlib' for regex 'libpython3.5'
      Note, selecting 'libpython3.5-minimal' for regex 'libpython3.5'
      0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.


      So how do I co-install libpython3.5 alongside libpython3.6?



      Here is a link to the driver I need to install: https://drive.google.com/open?id=1URsXZYvZnm6GHiCgMOFORyeOWIu0chH9



      To install the driver, you need to navigate to ./driver/udev/ and do the following:




      If you are using ubuntu, copy the .rules file to /etc/udev/rules.d/ to
      use pmd devices without administrative privileges (you will need root
      rights once to copy the file to the destination):



      sudo cp 10-royale-ubuntu.rules /etc/udev/rules.d



      Please make sure that the user is in the group plugdev!



      After copying the udev rule, please unplug and reinsert the camera.











      share|improve this question














      My employer recently purchased a CamBoard pico flexx infrared camera, and now I need to install the drivers for it on my machine.



      Eventually I plan to use this with python and opencv2, so naturally I started looking at the python installation instructions where it specifies the following:




      Linux installation



      On Ubuntu and Debian, install python3-matplotlib and its dependencies.



      You also need the libpython3.x package for the same minor version of
      python3.x that the roypy library was built for. In Debian and Ubuntu
      the libpython3.5, libpython3.6 and libpython3.7 libraries are all
      co-installable. For example, if running a sample fails with:



      ImportError: libpython3.5m.so.1.0: cannot open shared object file: No such file or directory


      then the libpython3.5 package is required.




      I have python 3.6.7 installed on my system along with libpython3.6, which I figured would work, but when I ran roypy.py, it still returns the same the above import error, but when I use



      apt install libpython3.5


      I get this:



      Reading package lists... Done
      Building dependency tree
      Reading state information... Done
      Note, selecting 'libpython3.5-stdlib' for regex 'libpython3.5'
      Note, selecting 'libpython3.5-minimal' for regex 'libpython3.5'
      0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.


      So how do I co-install libpython3.5 alongside libpython3.6?



      Here is a link to the driver I need to install: https://drive.google.com/open?id=1URsXZYvZnm6GHiCgMOFORyeOWIu0chH9



      To install the driver, you need to navigate to ./driver/udev/ and do the following:




      If you are using ubuntu, copy the .rules file to /etc/udev/rules.d/ to
      use pmd devices without administrative privileges (you will need root
      rights once to copy the file to the destination):



      sudo cp 10-royale-ubuntu.rules /etc/udev/rules.d



      Please make sure that the user is in the group plugdev!



      After copying the udev rule, please unplug and reinsert the camera.








      drivers python udev






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 3 at 14:32









      iggy12345iggy12345

      11




      11






















          0






          active

          oldest

          votes











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "89"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1106603%2fhow-to-co-install-libpython3-5-with-libpython3-6-and-libpython3-7%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Ask Ubuntu!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1106603%2fhow-to-co-install-libpython3-5-with-libpython3-6-and-libpython3-7%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

          Mangá

           ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕