Docker compose script complaining about a python module import










0














Docker script docker-compose --version is now throwing a weird error and is complaining about a missing python module ordered_dict. Not sure why is this happening but previously it was working just fine. Not sure if its related but I installed pip for python and later installed awscli using the pip.



Below is the stack trace I get on running docker-compose --version



Traceback (most recent call last):
File "/usr/bin/docker-compose", line 9, in <module>
load_entry_point('docker-compose==1.8.0', 'console_scripts', 'docker-compose')()
File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 484, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2725, in load_entry_point
return ep.load()
File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2343, in load
return self.resolve()
File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2349, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "/usr/lib/python2.7/dist-packages/compose/cli/main.py", line 14, in <module>
from . import errors
File "/usr/lib/python2.7/dist-packages/compose/cli/errors.py", line 9, in <module>
from docker.errors import APIError
File "/usr/lib/python2.7/dist-packages/docker/__init__.py", line 20, in <module>
from .client import Client, AutoVersionClient, from_env # flake8: noqa
File "/usr/lib/python2.7/dist-packages/docker/client.py", line 18, in <module>
import requests
File "/usr/lib/python2.7/dist-packages/requests/__init__.py", line 58, in <module>
from . import utils
File "/usr/lib/python2.7/dist-packages/requests/utils.py", line 26, in <module>
from .compat import parse_http_list as _parse_list_header
File "/usr/lib/python2.7/dist-packages/requests/compat.py", line 42, in <module>
from .packages.urllib3.packages.ordered_dict import OrderedDict
ImportError: No module named ordered_dict









share|improve this question


























    0














    Docker script docker-compose --version is now throwing a weird error and is complaining about a missing python module ordered_dict. Not sure why is this happening but previously it was working just fine. Not sure if its related but I installed pip for python and later installed awscli using the pip.



    Below is the stack trace I get on running docker-compose --version



    Traceback (most recent call last):
    File "/usr/bin/docker-compose", line 9, in <module>
    load_entry_point('docker-compose==1.8.0', 'console_scripts', 'docker-compose')()
    File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 484, in load_entry_point
    return get_distribution(dist).load_entry_point(group, name)
    File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2725, in load_entry_point
    return ep.load()
    File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2343, in load
    return self.resolve()
    File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2349, in resolve
    module = __import__(self.module_name, fromlist=['__name__'], level=0)
    File "/usr/lib/python2.7/dist-packages/compose/cli/main.py", line 14, in <module>
    from . import errors
    File "/usr/lib/python2.7/dist-packages/compose/cli/errors.py", line 9, in <module>
    from docker.errors import APIError
    File "/usr/lib/python2.7/dist-packages/docker/__init__.py", line 20, in <module>
    from .client import Client, AutoVersionClient, from_env # flake8: noqa
    File "/usr/lib/python2.7/dist-packages/docker/client.py", line 18, in <module>
    import requests
    File "/usr/lib/python2.7/dist-packages/requests/__init__.py", line 58, in <module>
    from . import utils
    File "/usr/lib/python2.7/dist-packages/requests/utils.py", line 26, in <module>
    from .compat import parse_http_list as _parse_list_header
    File "/usr/lib/python2.7/dist-packages/requests/compat.py", line 42, in <module>
    from .packages.urllib3.packages.ordered_dict import OrderedDict
    ImportError: No module named ordered_dict









    share|improve this question
























      0












      0








      0







      Docker script docker-compose --version is now throwing a weird error and is complaining about a missing python module ordered_dict. Not sure why is this happening but previously it was working just fine. Not sure if its related but I installed pip for python and later installed awscli using the pip.



      Below is the stack trace I get on running docker-compose --version



      Traceback (most recent call last):
      File "/usr/bin/docker-compose", line 9, in <module>
      load_entry_point('docker-compose==1.8.0', 'console_scripts', 'docker-compose')()
      File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 484, in load_entry_point
      return get_distribution(dist).load_entry_point(group, name)
      File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2725, in load_entry_point
      return ep.load()
      File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2343, in load
      return self.resolve()
      File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2349, in resolve
      module = __import__(self.module_name, fromlist=['__name__'], level=0)
      File "/usr/lib/python2.7/dist-packages/compose/cli/main.py", line 14, in <module>
      from . import errors
      File "/usr/lib/python2.7/dist-packages/compose/cli/errors.py", line 9, in <module>
      from docker.errors import APIError
      File "/usr/lib/python2.7/dist-packages/docker/__init__.py", line 20, in <module>
      from .client import Client, AutoVersionClient, from_env # flake8: noqa
      File "/usr/lib/python2.7/dist-packages/docker/client.py", line 18, in <module>
      import requests
      File "/usr/lib/python2.7/dist-packages/requests/__init__.py", line 58, in <module>
      from . import utils
      File "/usr/lib/python2.7/dist-packages/requests/utils.py", line 26, in <module>
      from .compat import parse_http_list as _parse_list_header
      File "/usr/lib/python2.7/dist-packages/requests/compat.py", line 42, in <module>
      from .packages.urllib3.packages.ordered_dict import OrderedDict
      ImportError: No module named ordered_dict









      share|improve this question













      Docker script docker-compose --version is now throwing a weird error and is complaining about a missing python module ordered_dict. Not sure why is this happening but previously it was working just fine. Not sure if its related but I installed pip for python and later installed awscli using the pip.



      Below is the stack trace I get on running docker-compose --version



      Traceback (most recent call last):
      File "/usr/bin/docker-compose", line 9, in <module>
      load_entry_point('docker-compose==1.8.0', 'console_scripts', 'docker-compose')()
      File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 484, in load_entry_point
      return get_distribution(dist).load_entry_point(group, name)
      File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2725, in load_entry_point
      return ep.load()
      File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2343, in load
      return self.resolve()
      File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2349, in resolve
      module = __import__(self.module_name, fromlist=['__name__'], level=0)
      File "/usr/lib/python2.7/dist-packages/compose/cli/main.py", line 14, in <module>
      from . import errors
      File "/usr/lib/python2.7/dist-packages/compose/cli/errors.py", line 9, in <module>
      from docker.errors import APIError
      File "/usr/lib/python2.7/dist-packages/docker/__init__.py", line 20, in <module>
      from .client import Client, AutoVersionClient, from_env # flake8: noqa
      File "/usr/lib/python2.7/dist-packages/docker/client.py", line 18, in <module>
      import requests
      File "/usr/lib/python2.7/dist-packages/requests/__init__.py", line 58, in <module>
      from . import utils
      File "/usr/lib/python2.7/dist-packages/requests/utils.py", line 26, in <module>
      from .compat import parse_http_list as _parse_list_header
      File "/usr/lib/python2.7/dist-packages/requests/compat.py", line 42, in <module>
      from .packages.urllib3.packages.ordered_dict import OrderedDict
      ImportError: No module named ordered_dict






      python docker docker-compose






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 12 at 7:09









      htopiwala

      9210




      9210






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Reinstalling docker-compose did the trick for me. You can reinstall by deleting the docker-compose file from /usr/local/bin and installing it again using instructions provided here.






          share|improve this answer




















            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            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%2fstackoverflow.com%2fquestions%2f53257338%2fdocker-compose-script-complaining-about-a-python-module-import%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









            0














            Reinstalling docker-compose did the trick for me. You can reinstall by deleting the docker-compose file from /usr/local/bin and installing it again using instructions provided here.






            share|improve this answer

























              0














              Reinstalling docker-compose did the trick for me. You can reinstall by deleting the docker-compose file from /usr/local/bin and installing it again using instructions provided here.






              share|improve this answer























                0












                0








                0






                Reinstalling docker-compose did the trick for me. You can reinstall by deleting the docker-compose file from /usr/local/bin and installing it again using instructions provided here.






                share|improve this answer












                Reinstalling docker-compose did the trick for me. You can reinstall by deleting the docker-compose file from /usr/local/bin and installing it again using instructions provided here.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 12 at 7:37









                htopiwala

                9210




                9210



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • 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.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • 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%2fstackoverflow.com%2fquestions%2f53257338%2fdocker-compose-script-complaining-about-a-python-module-import%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







                    這個網誌中的熱門文章

                    Barbados

                    How to read a connectionString WITH PROVIDER in .NET Core?

                    Node.js Script on GitHub Pages or Amazon S3