1. 程式人生 > >Ubuntu Python3.6安裝並安裝pip設定為預設的

Ubuntu Python3.6安裝並安裝pip設定為預設的

簡述

全程在terminal下完成就好啦
Install pip for python3.6 and python 3.6 in Linux(Ubuntu 16 LST)

方案

  • 開啟terminal

  • 新增新倉庫

sudo add-apt-repository ppa:jonathonf/python-3.6
  • 更新版本
sudo apt-get update
sudo apt-get install python3.6
  • 切換預設python3指向
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.5 1 
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.6 2 
sudo update-alternatives --config python3
  • 設定預設python指向
sudo ln -s /usr/bin/python3.6 /usr/bin/python
  • 安裝pip for python3.6

第一行似乎是不用的,但是我之前有遇到報錯,不確定這個是否有用。

sudo apt install python3-gdbm
sudo apt-get install python3-pip
  • 將python3.6的pip 設定為pip
sudo ln -s ./pip3 ./pip

測試

在這裡插入圖片描述