我尝试使用!pip install seaborn
和!conda install seaborn
安装seaborn但是都安装了python 2.7版本,我需要python 3.5版本。我使用!pip3 install seaborn
,它说:
'pip3' is not recognized as an internal or external command
我应该怎么做才能安装?
答案 0 :(得分:0)
我想这会起作用
sudo apt-get install python3-pip
之后您可以使用pip3安装seaborn
答案 1 :(得分:0)
!pip3 install --user seaborn
这样可行。