How to install python-docx at Ubuntu? The 2019 Stack Overflow Developer Survey Results Are Inssl missing from Python. 'module' object has no attribute 'HTTPSConnection'How to isolate Python 2.7.X on Ubuntu 12.04 which has default Python 2.7.3?How to install pip and a python package for self installed python?Installing python-pip on Ubuntu Server 16.04can't install Send2Trash python moduleCorrect way to install python 2.7 on Ubuntu 17.10?Problem in installing pip in Ubuntu 16.04What is the proper way to install an application with the Python packet manager (pip)?Bionic Beaver Install Python 3.7.1 with pyenvinstall python module for certain python binary

Cooking pasta in a water boiler

Did any laptop computers have a built-in 5 1/4 inch floppy drive?

Loose spokes after only a few rides

Why is the maximum length of OpenWrt’s root password 8 characters?

How to type this arrow in math mode?

Falsification in Math vs Science

Is it okay to consider publishing in my first year of PhD?

Is bread bad for ducks?

A female thief is not sold to make restitution -- so what happens instead?

What does Linus Torvalds mean when he says that Git "never ever" tracks a file?

For what reasons would an animal species NOT cross a *horizontal* land bridge?

Deal with toxic manager when you can't quit

Short story: child made less intelligent and less attractive

Output the Arecibo Message

Can I have a signal generator on while it's not connected?

Old scifi movie from the 50s or 60s with men in solid red uniforms who interrogate a spy from the past

Does adding complexity mean a more secure cipher?

Why not take a picture of a closer black hole?

The phrase "to the numbers born"?

Getting crown tickets for Statue of Liberty

How to display lines in a file like ls displays files in a directory?

How can I define good in a religion that claims no moral authority?

Can an undergraduate be advised by a professor who is very far away?

Mathematics of imaging the black hole



How to install python-docx at Ubuntu?



The 2019 Stack Overflow Developer Survey Results Are Inssl missing from Python. 'module' object has no attribute 'HTTPSConnection'How to isolate Python 2.7.X on Ubuntu 12.04 which has default Python 2.7.3?How to install pip and a python package for self installed python?Installing python-pip on Ubuntu Server 16.04can't install Send2Trash python moduleCorrect way to install python 2.7 on Ubuntu 17.10?Problem in installing pip in Ubuntu 16.04What is the proper way to install an application with the Python packet manager (pip)?Bionic Beaver Install Python 3.7.1 with pyenvinstall python module for certain python binary



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I have Ubuntu 19.04 without PIP.
Typically, I installed modules for Python using sudo apt-get install 'module', but it doesn't work for docx(or python-docx).










share|improve this question













migrated from softwarerecs.stackexchange.com 2 days ago


This question came from our site for people seeking specific software recommendations.
























    0















    I have Ubuntu 19.04 without PIP.
    Typically, I installed modules for Python using sudo apt-get install 'module', but it doesn't work for docx(or python-docx).










    share|improve this question













    migrated from softwarerecs.stackexchange.com 2 days ago


    This question came from our site for people seeking specific software recommendations.




















      0












      0








      0








      I have Ubuntu 19.04 without PIP.
      Typically, I installed modules for Python using sudo apt-get install 'module', but it doesn't work for docx(or python-docx).










      share|improve this question














      I have Ubuntu 19.04 without PIP.
      Typically, I installed modules for Python using sudo apt-get install 'module', but it doesn't work for docx(or python-docx).







      python






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 2 days ago







      february











      migrated from softwarerecs.stackexchange.com 2 days ago


      This question came from our site for people seeking specific software recommendations.









      migrated from softwarerecs.stackexchange.com 2 days ago


      This question came from our site for people seeking specific software recommendations.






















          1 Answer
          1






          active

          oldest

          votes


















          1














          Simply download https://files.pythonhosted.org/packages/e4/83/c66a1934ed5ed8ab1dbb9931f1779079f8bca0f6bbc5793c06c4b5e7d671/python-docx-0.8.10.tar.gz (or a later version found at https://pypi.org/project/python-docx/#files)



          Then un-tar it with tar -x, (or python -mtarfile -e python-docx-0.8.10.tar.gz python-docx).



          Finally change directory to where you extracted it and run python setup.py install



          Note that you will have to ensure that the dependencies are met first, at the time of writing they are:



          • behave>=1.2.3

          • flake8>=2.0

          • lxml>=3.1.0

          • mock>=1.0.1

          • pyparsing>=2.0.1

          • pytest>=2.5

          But the latest will be in the requirements.txt file within the tar file.






          share|improve this answer























            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%2f1132460%2fhow-to-install-python-docx-at-ubuntu%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown
























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            Simply download https://files.pythonhosted.org/packages/e4/83/c66a1934ed5ed8ab1dbb9931f1779079f8bca0f6bbc5793c06c4b5e7d671/python-docx-0.8.10.tar.gz (or a later version found at https://pypi.org/project/python-docx/#files)



            Then un-tar it with tar -x, (or python -mtarfile -e python-docx-0.8.10.tar.gz python-docx).



            Finally change directory to where you extracted it and run python setup.py install



            Note that you will have to ensure that the dependencies are met first, at the time of writing they are:



            • behave>=1.2.3

            • flake8>=2.0

            • lxml>=3.1.0

            • mock>=1.0.1

            • pyparsing>=2.0.1

            • pytest>=2.5

            But the latest will be in the requirements.txt file within the tar file.






            share|improve this answer



























              1














              Simply download https://files.pythonhosted.org/packages/e4/83/c66a1934ed5ed8ab1dbb9931f1779079f8bca0f6bbc5793c06c4b5e7d671/python-docx-0.8.10.tar.gz (or a later version found at https://pypi.org/project/python-docx/#files)



              Then un-tar it with tar -x, (or python -mtarfile -e python-docx-0.8.10.tar.gz python-docx).



              Finally change directory to where you extracted it and run python setup.py install



              Note that you will have to ensure that the dependencies are met first, at the time of writing they are:



              • behave>=1.2.3

              • flake8>=2.0

              • lxml>=3.1.0

              • mock>=1.0.1

              • pyparsing>=2.0.1

              • pytest>=2.5

              But the latest will be in the requirements.txt file within the tar file.






              share|improve this answer

























                1












                1








                1







                Simply download https://files.pythonhosted.org/packages/e4/83/c66a1934ed5ed8ab1dbb9931f1779079f8bca0f6bbc5793c06c4b5e7d671/python-docx-0.8.10.tar.gz (or a later version found at https://pypi.org/project/python-docx/#files)



                Then un-tar it with tar -x, (or python -mtarfile -e python-docx-0.8.10.tar.gz python-docx).



                Finally change directory to where you extracted it and run python setup.py install



                Note that you will have to ensure that the dependencies are met first, at the time of writing they are:



                • behave>=1.2.3

                • flake8>=2.0

                • lxml>=3.1.0

                • mock>=1.0.1

                • pyparsing>=2.0.1

                • pytest>=2.5

                But the latest will be in the requirements.txt file within the tar file.






                share|improve this answer













                Simply download https://files.pythonhosted.org/packages/e4/83/c66a1934ed5ed8ab1dbb9931f1779079f8bca0f6bbc5793c06c4b5e7d671/python-docx-0.8.10.tar.gz (or a later version found at https://pypi.org/project/python-docx/#files)



                Then un-tar it with tar -x, (or python -mtarfile -e python-docx-0.8.10.tar.gz python-docx).



                Finally change directory to where you extracted it and run python setup.py install



                Note that you will have to ensure that the dependencies are met first, at the time of writing they are:



                • behave>=1.2.3

                • flake8>=2.0

                • lxml>=3.1.0

                • mock>=1.0.1

                • pyparsing>=2.0.1

                • pytest>=2.5

                But the latest will be in the requirements.txt file within the tar file.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 2 days ago









                Steve BarnesSteve Barnes

                1304




                1304



























                    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%2f1132460%2fhow-to-install-python-docx-at-ubuntu%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

                    Tamil (spriik) Luke uk diar | Nawigatjuun

                    Align equal signs while including text over equalitiesAMS align: left aligned text/math plus multicolumn alignmentMultiple alignmentsAligning equations in multiple placesNumbering and aligning an equation with multiple columnsHow to align one equation with another multline equationUsing \ in environments inside the begintabularxNumber equations and preserving alignment of equal signsHow can I align equations to the left and to the right?Double equation alignment problem within align enviromentAligned within align: Why are they right-aligned?

                    Where does the image of a data connector as a sharp metal spike originate from?Where does the concept of infected people turning into zombies only after death originate from?Where does the motif of a reanimated human head originate?Where did the notion that Dragons could speak originate?Where does the archetypal image of the 'Grey' alien come from?Where did the suffix '-Man' originate?Where does the notion of being injured or killed by an illusion originate?Where did the term “sophont” originate?Where does the trope of magic spells being driven by advanced technology originate from?Where did the term “the living impaired” originate?