解除安裝python3 8之後 重啟無法進入桌面 黑屏

2021-10-09 17:55:12 字數 748 閱讀 2828

ubuntu 安裝桌面環境

sudo

apt-get update --fix-missing //更新軟體庫

sudo

apt-get upgrade --fix-missing // 公升級軟體

sudo apg-get install ubuntu-desktop --fix-missing // 安裝ubuntu桌面系統

保障網路暢通 在只有命令列的條件下

ping www.baidu.com
ifconfig   // 如果只有本地lo,
lspci -v  // ubuntu 中,通常有線網絡卡為eth0,無線網絡卡則為wlan0,後續增加的以此類推(可能某些無線網絡卡型號命名為eth1,而非wlan0)。
sudo

ifconfig 網絡卡裝置名 up //啟用網絡卡

ifconfig 網絡卡裝置名   //檢視網絡卡資訊
sudo /etc/init.d/networking start  // 啟用/禁用網路
iwconfig  // 用於檢視無線連線情況
lspci |

grep -i net // 檢視網絡卡生產商,型號。

python3 8使用aiml總結

切換到.aiml所在工作目錄 os.chdir alice path alice aiml.kernel 通過std startup.xml啟動aiml alice.learn std startup.xml aiml檔案有修改時可以通過load aiml b 在xml中pattern配置 進行修改...

python3 8動態人臉識別

pip install dlib pip python opencv coding utf 8 從視屏中識別人臉,並實時標出面部特徵點 import dlib 人臉識別的庫dlib import cv2 影象處理的庫opencv 使用特徵提取器get frontal face detector de...

Python3 8下使用tornado報錯

tornado官網文件 在windows上,tornado需要使用windowsselectoreventloop。這是python 3.7和更早版本的預設值,但python 3.8預設為事件迴圈,與tornado不相容。在python 3.8中使用tornado的應用程式必須在其主檔案 函式的開頭...