Unable remove python-mysql.connector in Ubuntu Server 16.04

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
0
down vote

favorite












I installed python-mysql.connector and python3-mysql.connector on my server. and set python 3.5 as my default python.
Now I want to remove python-mysql.connector but get the following error:



ImportError: No module named 'ConfigParser'


I searched it and found in python3 ConfigParser changed to configparser and I think this is the reason that prevent remove the package.
I use this to remove python3-mysql.connector and it was ok but I don't know how to remove pyhton-mysql.connector



Any idea would help me.
Thanks in advanced.







share|improve this question




















  • Revert back to Python 2.x as default, then remove python-mysql.connector. Not sure if it is a good idea to change the default Python version as other scripts may rely on that Python 2.x is default and might crash.
    – Thomas
    May 21 at 9:05














up vote
0
down vote

favorite












I installed python-mysql.connector and python3-mysql.connector on my server. and set python 3.5 as my default python.
Now I want to remove python-mysql.connector but get the following error:



ImportError: No module named 'ConfigParser'


I searched it and found in python3 ConfigParser changed to configparser and I think this is the reason that prevent remove the package.
I use this to remove python3-mysql.connector and it was ok but I don't know how to remove pyhton-mysql.connector



Any idea would help me.
Thanks in advanced.







share|improve this question




















  • Revert back to Python 2.x as default, then remove python-mysql.connector. Not sure if it is a good idea to change the default Python version as other scripts may rely on that Python 2.x is default and might crash.
    – Thomas
    May 21 at 9:05












up vote
0
down vote

favorite









up vote
0
down vote

favorite











I installed python-mysql.connector and python3-mysql.connector on my server. and set python 3.5 as my default python.
Now I want to remove python-mysql.connector but get the following error:



ImportError: No module named 'ConfigParser'


I searched it and found in python3 ConfigParser changed to configparser and I think this is the reason that prevent remove the package.
I use this to remove python3-mysql.connector and it was ok but I don't know how to remove pyhton-mysql.connector



Any idea would help me.
Thanks in advanced.







share|improve this question












I installed python-mysql.connector and python3-mysql.connector on my server. and set python 3.5 as my default python.
Now I want to remove python-mysql.connector but get the following error:



ImportError: No module named 'ConfigParser'


I searched it and found in python3 ConfigParser changed to configparser and I think this is the reason that prevent remove the package.
I use this to remove python3-mysql.connector and it was ok but I don't know how to remove pyhton-mysql.connector



Any idea would help me.
Thanks in advanced.









share|improve this question











share|improve this question




share|improve this question










asked May 21 at 8:53









Vertex Team

1




1











  • Revert back to Python 2.x as default, then remove python-mysql.connector. Not sure if it is a good idea to change the default Python version as other scripts may rely on that Python 2.x is default and might crash.
    – Thomas
    May 21 at 9:05
















  • Revert back to Python 2.x as default, then remove python-mysql.connector. Not sure if it is a good idea to change the default Python version as other scripts may rely on that Python 2.x is default and might crash.
    – Thomas
    May 21 at 9:05















Revert back to Python 2.x as default, then remove python-mysql.connector. Not sure if it is a good idea to change the default Python version as other scripts may rely on that Python 2.x is default and might crash.
– Thomas
May 21 at 9:05




Revert back to Python 2.x as default, then remove python-mysql.connector. Not sure if it is a good idea to change the default Python version as other scripts may rely on that Python 2.x is default and might crash.
– Thomas
May 21 at 9:05










1 Answer
1






active

oldest

votes

















up vote
0
down vote













Ok. As I said the problem was python 3.5 that was set as default.
So as @Thomas suggested to reverting back to python 2.x I did this and problem solved:



remove symbolic link to python 3.5



sudo rm /usr/bin/python


set python 2.7 as default



sudo ln -s /usr/bin/python2.7 /usr/bin/python


testing



python --version


hope help to others






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',
    convertImagesToLinks: true,
    noModals: false,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    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%2f1038618%2funable-remove-python-mysql-connector-in-ubuntu-server-16-04%23new-answer', 'question_page');

    );

    Post as a guest






























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    0
    down vote













    Ok. As I said the problem was python 3.5 that was set as default.
    So as @Thomas suggested to reverting back to python 2.x I did this and problem solved:



    remove symbolic link to python 3.5



    sudo rm /usr/bin/python


    set python 2.7 as default



    sudo ln -s /usr/bin/python2.7 /usr/bin/python


    testing



    python --version


    hope help to others






    share|improve this answer
























      up vote
      0
      down vote













      Ok. As I said the problem was python 3.5 that was set as default.
      So as @Thomas suggested to reverting back to python 2.x I did this and problem solved:



      remove symbolic link to python 3.5



      sudo rm /usr/bin/python


      set python 2.7 as default



      sudo ln -s /usr/bin/python2.7 /usr/bin/python


      testing



      python --version


      hope help to others






      share|improve this answer






















        up vote
        0
        down vote










        up vote
        0
        down vote









        Ok. As I said the problem was python 3.5 that was set as default.
        So as @Thomas suggested to reverting back to python 2.x I did this and problem solved:



        remove symbolic link to python 3.5



        sudo rm /usr/bin/python


        set python 2.7 as default



        sudo ln -s /usr/bin/python2.7 /usr/bin/python


        testing



        python --version


        hope help to others






        share|improve this answer












        Ok. As I said the problem was python 3.5 that was set as default.
        So as @Thomas suggested to reverting back to python 2.x I did this and problem solved:



        remove symbolic link to python 3.5



        sudo rm /usr/bin/python


        set python 2.7 as default



        sudo ln -s /usr/bin/python2.7 /usr/bin/python


        testing



        python --version


        hope help to others







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered May 22 at 17:19









        Vertex Team

        1




        1






















             

            draft saved


            draft discarded


























             


            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1038618%2funable-remove-python-mysql-connector-in-ubuntu-server-16-04%23new-answer', 'question_page');

            );

            Post as a guest













































































            Popular posts from this blog

            pylint3 and pip3 broken

            Missing snmpget and snmpwalk

            How to enroll fingerprints to Ubuntu 17.10 with VFS491