Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

43 total results found

Entertainment

📢 有神快拜

Docker & Jupyter & PyTorch

📢 有神快拜

Ubuntu

📢 有神快拜

📢 履歷

Windows 11

📢 有神快拜

📢 有神快拜

Virtualization

📢 有神快拜

Networking

📢 有神快拜

E-mail

📢 有神快拜

專題作品簡介 (學生期 Side-Project)

📢 履歷

📢 APWCS

下載Youtube影片

📢 有神快拜 Entertainment

如何下載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 ...

前額腦損傷

📢 有神快拜 Entertainment

Youtube 前額腦損傷 片段

安裝Python 3.10

📢 有神快拜 Docker & Jupyter & PyTorch

簡介 在舊版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

📢 有神快拜 Docker & Jupyter & PyTorch

pip install ipykernel ipython kernel install --name DISPLAY_NAME --user

Jupyter lab install LSP

📢 有神快拜 Docker & Jupyter & PyTorch

pip install jupyterlab-lsp pip install python-language-server[python]

引入pytorch時出現tqdm錯誤

📢 有神快拜 Docker & Jupyter & PyTorch

簡介 引入pytorch時出現tqdm錯誤,則須另外安裝套件ipywidgets。 # tqdm error is issued # by running the following code in python. # > import torch # Fix by install ipywidgets. pip install ipywidgets

📢 南交大新手攻略

Netplan

📢 有神快拜 Ubuntu

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

📢 有神快拜 Ubuntu

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 ...