Advanced Search
Search Results
43 total results found
Entertainment
Docker & Jupyter & PyTorch
Ubuntu
📢 履歷
Windows 11
📢 有神快拜
Virtualization
Networking
專題作品簡介 (學生期 Side-Project)
📢 APWCS
下載Youtube影片
如何下載Youtube影片 使用線上工具 點我看資料豐富的教學 使用本機軟體 yt-dlp 如何使用yt-dlp Step 1. 取得Python和pip 點我看資料豐富的教學 Step 2. 安裝yt-dlp # -U means install the LATEST version. # Old version yt-dlp may NOT work. pip install -U yt-dlp Step3. 使用yt-dlp # Download video. yt-dlp ...
前額腦損傷
Youtube 前額腦損傷 片段
安裝Python 3.10
簡介 在舊版Ubuntu安裝Python 3.10以及對應的pip版本。 安裝Python 藉由apt安裝,安裝後須注意python執行時的執行檔版本。 sudo apt update sudo apt install -y software-properties-common sudo add-apt-repository ppa:deadsnakes/ppa sudo apt install -y python3.10 python3.10-distutils which python3.10 安裝pip ...
新增ipykernel
pip install ipykernel ipython kernel install --name DISPLAY_NAME --user
Jupyter lab install LSP
pip install jupyterlab-lsp pip install python-language-server[python]
引入pytorch時出現tqdm錯誤
簡介 引入pytorch時出現tqdm錯誤,則須另外安裝套件ipywidgets。 # tqdm error is issued # by running the following code in python. # > import torch # Fix by install ipywidgets. pip install ipywidgets
📢 南交大新手攻略
Netplan
Ethernet (Dynamic IP) network: version: 2 ethernets: eth0: dhcp4: true optional: true Ethernet (Static IP) network: version: 2 ethernets: eth0: dhcp4: no addresses: [xxx.xxx.x...
iptables as firewall
Setup iptables as a firewall. Drop packages from INPUT chain by default. However, we have to allow response packages and requests to local DNS cache. iptables -P INPUT DROP iptables -I INPUT 1 -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT iptables -I ...