I need to install DYMO software for labelwriter 450, but i can't… any help?Idle - Unable to open raster...

How to properly claim credit for peer review?

4 Spheres all touching each other??

raspberry pi change directory (cd) command not working with USB drive

Meaning of すきっとした

Can chords be played on the flute?

Inventor that creates machine that grabs man from future

Why is my solution for the partial pressures of two different gases incorrect?

Can I become debt free or should I file for bankruptcy? How do I manage my debt and finances?

What is the wife of a henpecked husband called?

Has the Isbell–Freyd criterion ever been used to check that a category is concretisable?

Why can I easily sing or whistle a tune I've just heard, but not as easily reproduce it on an instrument?

What is the meaning of "pick up" in this sentence?

Criticizing long fiction. How is it different from short?

How to push a box with physics engine by another object?

Is there a way to help users from having to clicking emails twice before logging into a new sandbox

What's the rationale behind the objections to these measures against human trafficking?

How do we edit a novel that's written by several people?

Quenching swords in dragon blood; why?

Avoiding morning and evening handshakes

Where is this triangular-shaped space station from?

What to do when being responsible for data protection in your lab, yet advice is ignored?

Where was Karl Mordo in Infinity War?

How should I state my MS degree in my CV when it was in practice a joint-program?

Am I using the wrong word all along?



I need to install DYMO software for labelwriter 450, but i can't… any help?


Idle - Unable to open raster file - : SuccessInstalling 3rd party software on 16.04 LTS no root accessCan't install ath9k WiFi driverscan't install fglrxHow do you install drivers for the AMD Radeon R7 m360 graphics card?Can't add a ppa to install wifi driver in my hp pavillion ac-032tx with ubuntu 14.04Resolve.conf Doesn't exist but can't make an oneInstalling CP210x Driver?How to install Wi-Fi driver for Realtek RTL8821CE on Ubuntu 18.04?How to install driver for AMD Radeon R5 Graphics card?Inputattach does nothing on elo touchscreen ubuntu 18.04













5















i can't find how to install and use the labelwriter 450 and it's urgent. i print for my job 50 to 100 labels per week.



i don't know what to do, i just went to ubuntu from windows 8.1.1.



I tried with wine but still doesn't work.










share|improve this question



























    5















    i can't find how to install and use the labelwriter 450 and it's urgent. i print for my job 50 to 100 labels per week.



    i don't know what to do, i just went to ubuntu from windows 8.1.1.



    I tried with wine but still doesn't work.










    share|improve this question

























      5












      5








      5


      1






      i can't find how to install and use the labelwriter 450 and it's urgent. i print for my job 50 to 100 labels per week.



      i don't know what to do, i just went to ubuntu from windows 8.1.1.



      I tried with wine but still doesn't work.










      share|improve this question














      i can't find how to install and use the labelwriter 450 and it's urgent. i print for my job 50 to 100 labels per week.



      i don't know what to do, i just went to ubuntu from windows 8.1.1.



      I tried with wine but still doesn't work.







      ubuntu-drivers






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jul 20 '14 at 11:45









      kailorkailor

      66127




      66127






















          4 Answers
          4






          active

          oldest

          votes


















          6














          You need to get the correct drivers for CUPS, the Linux printing system.
          As far as I can tell, you can download them here:



          https://dymo.custhelp.com/app/answers/detail/a_id/101/~/dymo-drivers-and-downloads#lw_linux






          share|improve this answer
























          • you may also find the discussion here useful: ubuntuforums.org/showthread.php?t=861781

            – Nick Veitch
            Jul 20 '14 at 12:02





















          8














          To install Dymo 450 LabelWriter on Debian Systems - Ubuntu, Raspibian, you might need first: (helped me to compile drivers, advice from : http://ubuntuforums.org/showthread.php?t=1502581 )



          sudo apt-get install libcups2-dev libcupsimage2-dev gcc g++


          Then you want to do install dymo linux sdk (both links work at 2016-05-14):




          • http://www.dymo.com/en-US/dymo-label-sdk-and-cups-drivers-for-linux-dymo-label-sdk-cups-linux-p--1

          • http://var.dymo.com/US/resources/sdk/linux/


          Then you unpack it, compile and install driver:



          ./configure
          make
          sudo make install


          Later I've added driver via cups web interface like any other driver, choosing right ppd file. (example project : https://www.hmazter.com/2013/05/raspberry-pi-printer-server-for-labelwriter and another: https://gist.github.com/gwpl/6d6c1457b4d1f6b778917a2f7c3c57fd ).



          Finally, I share via network Dymo 450 LabelWriter(s) attached to Ubuntu and Raspibian with other Linuxes (including Archlinux) and I've found that to make printing via network (e.g. ipp:// and ipps:// ) to work, I need to schedule printing (of pdf, png, whatever) add -o raw to lpr command. You will see example of -o raw in https://gist.github.com/gwpl/6d6c1457b4d1f6b778917a2f7c3c57fd and https://askubuntu.com/a/748035/31300 .



          Finally references for installing and using Dymo 450 under Linux:




          • https://www.hmazter.com/2013/05/raspberry-pi-printer-server-for-labelwriter

          • https://ubuntuforums.org/showthread.php?t=861781&page=6

          • http://www.taklischris.info/varietas/use-your-dymo-printer-on-ubuntu






          share|improve this answer


























          • Sadz, the links have stopped working in 2018

            – Jamie Hutber
            Apr 19 '18 at 18:07











          • Which links? As I checked they seem working. I've just downloaded dymo cups drivers package, I see tutorials.

            – Grzegorz Wierzowiecki
            Apr 21 '18 at 10:08











          • var.dymo.com/US/resources/sdk/linux is no longer pointing to the SDK/CUPS but the first one is (at this point ;-) )

            – Ray Oei
            Dec 6 '18 at 12:25



















          0














          The answer by Grzegorz kinda works, but there is an issue in the official DYMO sources which prevents it from building on the latest version of CUPS. I found a patch on this Ubuntu forum post which contains the fix for it.



          The post's instructions were:



          git clone https://aur.archlinux.org/dymo-cups-drivers.git

          Then copy that files inside the folder of driver, and finally:
          * patch -Np1 -i cups-ppd-header.patch
          * ./configure
          * make
          * sudo make install


          Basically, several files are missing this line, which makes it impossible to build:



          #include <cups/ppd.h>


          I made the change against the official version 1.4.0.5 copy of the source and put it in a repository for others to use:
          https://github.com/Kyle-Falconer/DYMO-SDK-for-Linux






          share|improve this answer































            0














            The answers look great, but there seems to be one little big problem.
            I also have a Dymo 450 printer, under Linux it works, as a printer, no problem.
            But, and here is the snag, if you want to use it through webpages, then you need something like a dls webservice, and that only is available for Win and Mac.






            share|improve this answer








            New contributor




            Cloggie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.




















              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%2f500242%2fi-need-to-install-dymo-software-for-labelwriter-450-but-i-cant-any-help%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              4 Answers
              4






              active

              oldest

              votes








              4 Answers
              4






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              6














              You need to get the correct drivers for CUPS, the Linux printing system.
              As far as I can tell, you can download them here:



              https://dymo.custhelp.com/app/answers/detail/a_id/101/~/dymo-drivers-and-downloads#lw_linux






              share|improve this answer
























              • you may also find the discussion here useful: ubuntuforums.org/showthread.php?t=861781

                – Nick Veitch
                Jul 20 '14 at 12:02


















              6














              You need to get the correct drivers for CUPS, the Linux printing system.
              As far as I can tell, you can download them here:



              https://dymo.custhelp.com/app/answers/detail/a_id/101/~/dymo-drivers-and-downloads#lw_linux






              share|improve this answer
























              • you may also find the discussion here useful: ubuntuforums.org/showthread.php?t=861781

                – Nick Veitch
                Jul 20 '14 at 12:02
















              6












              6








              6







              You need to get the correct drivers for CUPS, the Linux printing system.
              As far as I can tell, you can download them here:



              https://dymo.custhelp.com/app/answers/detail/a_id/101/~/dymo-drivers-and-downloads#lw_linux






              share|improve this answer













              You need to get the correct drivers for CUPS, the Linux printing system.
              As far as I can tell, you can download them here:



              https://dymo.custhelp.com/app/answers/detail/a_id/101/~/dymo-drivers-and-downloads#lw_linux







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Jul 20 '14 at 11:59









              Nick VeitchNick Veitch

              854410




              854410













              • you may also find the discussion here useful: ubuntuforums.org/showthread.php?t=861781

                – Nick Veitch
                Jul 20 '14 at 12:02





















              • you may also find the discussion here useful: ubuntuforums.org/showthread.php?t=861781

                – Nick Veitch
                Jul 20 '14 at 12:02



















              you may also find the discussion here useful: ubuntuforums.org/showthread.php?t=861781

              – Nick Veitch
              Jul 20 '14 at 12:02







              you may also find the discussion here useful: ubuntuforums.org/showthread.php?t=861781

              – Nick Veitch
              Jul 20 '14 at 12:02















              8














              To install Dymo 450 LabelWriter on Debian Systems - Ubuntu, Raspibian, you might need first: (helped me to compile drivers, advice from : http://ubuntuforums.org/showthread.php?t=1502581 )



              sudo apt-get install libcups2-dev libcupsimage2-dev gcc g++


              Then you want to do install dymo linux sdk (both links work at 2016-05-14):




              • http://www.dymo.com/en-US/dymo-label-sdk-and-cups-drivers-for-linux-dymo-label-sdk-cups-linux-p--1

              • http://var.dymo.com/US/resources/sdk/linux/


              Then you unpack it, compile and install driver:



              ./configure
              make
              sudo make install


              Later I've added driver via cups web interface like any other driver, choosing right ppd file. (example project : https://www.hmazter.com/2013/05/raspberry-pi-printer-server-for-labelwriter and another: https://gist.github.com/gwpl/6d6c1457b4d1f6b778917a2f7c3c57fd ).



              Finally, I share via network Dymo 450 LabelWriter(s) attached to Ubuntu and Raspibian with other Linuxes (including Archlinux) and I've found that to make printing via network (e.g. ipp:// and ipps:// ) to work, I need to schedule printing (of pdf, png, whatever) add -o raw to lpr command. You will see example of -o raw in https://gist.github.com/gwpl/6d6c1457b4d1f6b778917a2f7c3c57fd and https://askubuntu.com/a/748035/31300 .



              Finally references for installing and using Dymo 450 under Linux:




              • https://www.hmazter.com/2013/05/raspberry-pi-printer-server-for-labelwriter

              • https://ubuntuforums.org/showthread.php?t=861781&page=6

              • http://www.taklischris.info/varietas/use-your-dymo-printer-on-ubuntu






              share|improve this answer


























              • Sadz, the links have stopped working in 2018

                – Jamie Hutber
                Apr 19 '18 at 18:07











              • Which links? As I checked they seem working. I've just downloaded dymo cups drivers package, I see tutorials.

                – Grzegorz Wierzowiecki
                Apr 21 '18 at 10:08











              • var.dymo.com/US/resources/sdk/linux is no longer pointing to the SDK/CUPS but the first one is (at this point ;-) )

                – Ray Oei
                Dec 6 '18 at 12:25
















              8














              To install Dymo 450 LabelWriter on Debian Systems - Ubuntu, Raspibian, you might need first: (helped me to compile drivers, advice from : http://ubuntuforums.org/showthread.php?t=1502581 )



              sudo apt-get install libcups2-dev libcupsimage2-dev gcc g++


              Then you want to do install dymo linux sdk (both links work at 2016-05-14):




              • http://www.dymo.com/en-US/dymo-label-sdk-and-cups-drivers-for-linux-dymo-label-sdk-cups-linux-p--1

              • http://var.dymo.com/US/resources/sdk/linux/


              Then you unpack it, compile and install driver:



              ./configure
              make
              sudo make install


              Later I've added driver via cups web interface like any other driver, choosing right ppd file. (example project : https://www.hmazter.com/2013/05/raspberry-pi-printer-server-for-labelwriter and another: https://gist.github.com/gwpl/6d6c1457b4d1f6b778917a2f7c3c57fd ).



              Finally, I share via network Dymo 450 LabelWriter(s) attached to Ubuntu and Raspibian with other Linuxes (including Archlinux) and I've found that to make printing via network (e.g. ipp:// and ipps:// ) to work, I need to schedule printing (of pdf, png, whatever) add -o raw to lpr command. You will see example of -o raw in https://gist.github.com/gwpl/6d6c1457b4d1f6b778917a2f7c3c57fd and https://askubuntu.com/a/748035/31300 .



              Finally references for installing and using Dymo 450 under Linux:




              • https://www.hmazter.com/2013/05/raspberry-pi-printer-server-for-labelwriter

              • https://ubuntuforums.org/showthread.php?t=861781&page=6

              • http://www.taklischris.info/varietas/use-your-dymo-printer-on-ubuntu






              share|improve this answer


























              • Sadz, the links have stopped working in 2018

                – Jamie Hutber
                Apr 19 '18 at 18:07











              • Which links? As I checked they seem working. I've just downloaded dymo cups drivers package, I see tutorials.

                – Grzegorz Wierzowiecki
                Apr 21 '18 at 10:08











              • var.dymo.com/US/resources/sdk/linux is no longer pointing to the SDK/CUPS but the first one is (at this point ;-) )

                – Ray Oei
                Dec 6 '18 at 12:25














              8












              8








              8







              To install Dymo 450 LabelWriter on Debian Systems - Ubuntu, Raspibian, you might need first: (helped me to compile drivers, advice from : http://ubuntuforums.org/showthread.php?t=1502581 )



              sudo apt-get install libcups2-dev libcupsimage2-dev gcc g++


              Then you want to do install dymo linux sdk (both links work at 2016-05-14):




              • http://www.dymo.com/en-US/dymo-label-sdk-and-cups-drivers-for-linux-dymo-label-sdk-cups-linux-p--1

              • http://var.dymo.com/US/resources/sdk/linux/


              Then you unpack it, compile and install driver:



              ./configure
              make
              sudo make install


              Later I've added driver via cups web interface like any other driver, choosing right ppd file. (example project : https://www.hmazter.com/2013/05/raspberry-pi-printer-server-for-labelwriter and another: https://gist.github.com/gwpl/6d6c1457b4d1f6b778917a2f7c3c57fd ).



              Finally, I share via network Dymo 450 LabelWriter(s) attached to Ubuntu and Raspibian with other Linuxes (including Archlinux) and I've found that to make printing via network (e.g. ipp:// and ipps:// ) to work, I need to schedule printing (of pdf, png, whatever) add -o raw to lpr command. You will see example of -o raw in https://gist.github.com/gwpl/6d6c1457b4d1f6b778917a2f7c3c57fd and https://askubuntu.com/a/748035/31300 .



              Finally references for installing and using Dymo 450 under Linux:




              • https://www.hmazter.com/2013/05/raspberry-pi-printer-server-for-labelwriter

              • https://ubuntuforums.org/showthread.php?t=861781&page=6

              • http://www.taklischris.info/varietas/use-your-dymo-printer-on-ubuntu






              share|improve this answer















              To install Dymo 450 LabelWriter on Debian Systems - Ubuntu, Raspibian, you might need first: (helped me to compile drivers, advice from : http://ubuntuforums.org/showthread.php?t=1502581 )



              sudo apt-get install libcups2-dev libcupsimage2-dev gcc g++


              Then you want to do install dymo linux sdk (both links work at 2016-05-14):




              • http://www.dymo.com/en-US/dymo-label-sdk-and-cups-drivers-for-linux-dymo-label-sdk-cups-linux-p--1

              • http://var.dymo.com/US/resources/sdk/linux/


              Then you unpack it, compile and install driver:



              ./configure
              make
              sudo make install


              Later I've added driver via cups web interface like any other driver, choosing right ppd file. (example project : https://www.hmazter.com/2013/05/raspberry-pi-printer-server-for-labelwriter and another: https://gist.github.com/gwpl/6d6c1457b4d1f6b778917a2f7c3c57fd ).



              Finally, I share via network Dymo 450 LabelWriter(s) attached to Ubuntu and Raspibian with other Linuxes (including Archlinux) and I've found that to make printing via network (e.g. ipp:// and ipps:// ) to work, I need to schedule printing (of pdf, png, whatever) add -o raw to lpr command. You will see example of -o raw in https://gist.github.com/gwpl/6d6c1457b4d1f6b778917a2f7c3c57fd and https://askubuntu.com/a/748035/31300 .



              Finally references for installing and using Dymo 450 under Linux:




              • https://www.hmazter.com/2013/05/raspberry-pi-printer-server-for-labelwriter

              • https://ubuntuforums.org/showthread.php?t=861781&page=6

              • http://www.taklischris.info/varietas/use-your-dymo-printer-on-ubuntu







              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Jul 13 '18 at 14:46









              Victor Häggqvist

              1487




              1487










              answered May 14 '16 at 8:38









              Grzegorz WierzowieckiGrzegorz Wierzowiecki

              7841715




              7841715













              • Sadz, the links have stopped working in 2018

                – Jamie Hutber
                Apr 19 '18 at 18:07











              • Which links? As I checked they seem working. I've just downloaded dymo cups drivers package, I see tutorials.

                – Grzegorz Wierzowiecki
                Apr 21 '18 at 10:08











              • var.dymo.com/US/resources/sdk/linux is no longer pointing to the SDK/CUPS but the first one is (at this point ;-) )

                – Ray Oei
                Dec 6 '18 at 12:25



















              • Sadz, the links have stopped working in 2018

                – Jamie Hutber
                Apr 19 '18 at 18:07











              • Which links? As I checked they seem working. I've just downloaded dymo cups drivers package, I see tutorials.

                – Grzegorz Wierzowiecki
                Apr 21 '18 at 10:08











              • var.dymo.com/US/resources/sdk/linux is no longer pointing to the SDK/CUPS but the first one is (at this point ;-) )

                – Ray Oei
                Dec 6 '18 at 12:25

















              Sadz, the links have stopped working in 2018

              – Jamie Hutber
              Apr 19 '18 at 18:07





              Sadz, the links have stopped working in 2018

              – Jamie Hutber
              Apr 19 '18 at 18:07













              Which links? As I checked they seem working. I've just downloaded dymo cups drivers package, I see tutorials.

              – Grzegorz Wierzowiecki
              Apr 21 '18 at 10:08





              Which links? As I checked they seem working. I've just downloaded dymo cups drivers package, I see tutorials.

              – Grzegorz Wierzowiecki
              Apr 21 '18 at 10:08













              var.dymo.com/US/resources/sdk/linux is no longer pointing to the SDK/CUPS but the first one is (at this point ;-) )

              – Ray Oei
              Dec 6 '18 at 12:25





              var.dymo.com/US/resources/sdk/linux is no longer pointing to the SDK/CUPS but the first one is (at this point ;-) )

              – Ray Oei
              Dec 6 '18 at 12:25











              0














              The answer by Grzegorz kinda works, but there is an issue in the official DYMO sources which prevents it from building on the latest version of CUPS. I found a patch on this Ubuntu forum post which contains the fix for it.



              The post's instructions were:



              git clone https://aur.archlinux.org/dymo-cups-drivers.git

              Then copy that files inside the folder of driver, and finally:
              * patch -Np1 -i cups-ppd-header.patch
              * ./configure
              * make
              * sudo make install


              Basically, several files are missing this line, which makes it impossible to build:



              #include <cups/ppd.h>


              I made the change against the official version 1.4.0.5 copy of the source and put it in a repository for others to use:
              https://github.com/Kyle-Falconer/DYMO-SDK-for-Linux






              share|improve this answer




























                0














                The answer by Grzegorz kinda works, but there is an issue in the official DYMO sources which prevents it from building on the latest version of CUPS. I found a patch on this Ubuntu forum post which contains the fix for it.



                The post's instructions were:



                git clone https://aur.archlinux.org/dymo-cups-drivers.git

                Then copy that files inside the folder of driver, and finally:
                * patch -Np1 -i cups-ppd-header.patch
                * ./configure
                * make
                * sudo make install


                Basically, several files are missing this line, which makes it impossible to build:



                #include <cups/ppd.h>


                I made the change against the official version 1.4.0.5 copy of the source and put it in a repository for others to use:
                https://github.com/Kyle-Falconer/DYMO-SDK-for-Linux






                share|improve this answer


























                  0












                  0








                  0







                  The answer by Grzegorz kinda works, but there is an issue in the official DYMO sources which prevents it from building on the latest version of CUPS. I found a patch on this Ubuntu forum post which contains the fix for it.



                  The post's instructions were:



                  git clone https://aur.archlinux.org/dymo-cups-drivers.git

                  Then copy that files inside the folder of driver, and finally:
                  * patch -Np1 -i cups-ppd-header.patch
                  * ./configure
                  * make
                  * sudo make install


                  Basically, several files are missing this line, which makes it impossible to build:



                  #include <cups/ppd.h>


                  I made the change against the official version 1.4.0.5 copy of the source and put it in a repository for others to use:
                  https://github.com/Kyle-Falconer/DYMO-SDK-for-Linux






                  share|improve this answer













                  The answer by Grzegorz kinda works, but there is an issue in the official DYMO sources which prevents it from building on the latest version of CUPS. I found a patch on this Ubuntu forum post which contains the fix for it.



                  The post's instructions were:



                  git clone https://aur.archlinux.org/dymo-cups-drivers.git

                  Then copy that files inside the folder of driver, and finally:
                  * patch -Np1 -i cups-ppd-header.patch
                  * ./configure
                  * make
                  * sudo make install


                  Basically, several files are missing this line, which makes it impossible to build:



                  #include <cups/ppd.h>


                  I made the change against the official version 1.4.0.5 copy of the source and put it in a repository for others to use:
                  https://github.com/Kyle-Falconer/DYMO-SDK-for-Linux







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Feb 14 at 19:39









                  Kyle FalconerKyle Falconer

                  10614




                  10614























                      0














                      The answers look great, but there seems to be one little big problem.
                      I also have a Dymo 450 printer, under Linux it works, as a printer, no problem.
                      But, and here is the snag, if you want to use it through webpages, then you need something like a dls webservice, and that only is available for Win and Mac.






                      share|improve this answer








                      New contributor




                      Cloggie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.

























                        0














                        The answers look great, but there seems to be one little big problem.
                        I also have a Dymo 450 printer, under Linux it works, as a printer, no problem.
                        But, and here is the snag, if you want to use it through webpages, then you need something like a dls webservice, and that only is available for Win and Mac.






                        share|improve this answer








                        New contributor




                        Cloggie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.























                          0












                          0








                          0







                          The answers look great, but there seems to be one little big problem.
                          I also have a Dymo 450 printer, under Linux it works, as a printer, no problem.
                          But, and here is the snag, if you want to use it through webpages, then you need something like a dls webservice, and that only is available for Win and Mac.






                          share|improve this answer








                          New contributor




                          Cloggie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.










                          The answers look great, but there seems to be one little big problem.
                          I also have a Dymo 450 printer, under Linux it works, as a printer, no problem.
                          But, and here is the snag, if you want to use it through webpages, then you need something like a dls webservice, and that only is available for Win and Mac.







                          share|improve this answer








                          New contributor




                          Cloggie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.









                          share|improve this answer



                          share|improve this answer






                          New contributor




                          Cloggie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.









                          answered 10 mins ago









                          CloggieCloggie

                          11




                          11




                          New contributor




                          Cloggie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.





                          New contributor





                          Cloggie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.






                          Cloggie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.






























                              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%2f500242%2fi-need-to-install-dymo-software-for-labelwriter-450-but-i-cant-any-help%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

                              Why do type traits not work with types in namespace scope?What are POD types in C++?Why can templates only be...

                              Will tsunami waves travel forever if there was no land?Why do tsunami waves begin with the water flowing away...

                              Should I use Docker or LXD?How to cache (more) data on SSD/RAM to avoid spin up?Unable to get Windows File...