Possible conflicting python installations

后端 未结 2 2066
庸人自扰
庸人自扰 2020-12-10 12:40

I\'m not sure if the default python installation is the one that I\'ve been installing modules to, and if that may be the cause of a conflicting Unicode byte size compatibil

2条回答
  •  天命终不由人
    2020-12-10 13:08

    What OS are you on? This is more a question for superuser, but try something like this. Ditch easy_install and use pip if you haven't already.

    On Ubuntu:

    sudo apt-get install python-setuptools 
    sudo easy_install pip 
    pip install --user numpy
    

提交回复
热议问题