Comprehensive Guide to Installing PyTorch on Windows, Jetson Nano, and Ubuntu
This guide walks through the setup of PyTorch across three common environments: Windows (with CUDA), NVIDIA Jetson Nano (JetPack 4.6), and Ubuntu Linux. It covers driver installation, CUDA Toolkit, cuDNN, and final verification.
Windows Installation
1.1 Verify or Install NVIDIA Driver
The NVIDIA driver acts as the communication bridge betwee ...
Posted on Mon, 15 Jun 2026 15:59:59 +0000 by Johannes80
Deep Learning Environment Setup and Project Configuration
Version Checking
# Check CUDA version (Command Prompt)
nvcc -V or nvcc --version
# Check Python version (Command Prompt)
python
# Check available CUDA versions (Command Prompt)
nvidia-smi # CUDA Version is displayed after this text
Installation Process
1. Visual Studio Installation
Version Selection: For CUDA 11.8.0 (can be higher th ...
Posted on Mon, 08 Jun 2026 17:32:29 +0000 by warren
Installing PyTorch with Specific CUDA Versions
PyTorch with CUDA 11.8
To install PyTorch 2.2.0 with CUDA 11.8 support:
pip install torch==2.2.0+cu118 --extra-index-url https://download.pytorch.org/whl/cu118
PyTorch with CUDA 12.4
For CUDA 12.4 compatibility, use:
pip install torch==2.4.0+cu124 --extra-index-url https://download.pytorch.org/whl/cu124
LMdeploy Minimum Requirements
LMdeploy ...
Posted on Sat, 30 May 2026 22:07:00 +0000 by illzz
Parallel CUDA Installation and Version Management on Linux
When working with machine learning frameworks that depend on specific CUDA releases, maintaining multiple toolkit versions on a single Linux host becomes essential. Rather than removing existing installations, you can deploy additional releases alongside the primary version and toggle between them dynamically.
Installing an Additional CUDA Rele ...
Posted on Sat, 16 May 2026 11:23:29 +0000 by mcirl2
Installing TensorFlow 1.x and 2.x with CPU and GPU Support on Windows and Linux
Prerequisites and Overview
This guide covers the installation of TensorFlow versions 1.15 and 2.16.1 using the conda package manager. The procedures are consistent across Windows 10 and Ubuntu 22.04 LTS. It is updated as of March 2024. CPU and GPU configurations are detailed.
System and Software Requirements
1. Conda Installation
Install Anacon ...
Posted on Sat, 16 May 2026 03:14:38 +0000 by Noctule
Establishing a Local Inference Pipeline for Open-Source Large Language Models
Prerequisites and Environment Configuration
Before deploying any model, ensure the Python environment is stable. Update package managers and configure mirror sources to improve download stability if network constraints exist.
Dependency Installation
Update pip first, then install core libraries required for Hugging Face or ModelScope models. Us ...
Posted on Fri, 15 May 2026 19:47:50 +0000 by mr_mind
CUDA C++ Programming Model Fundamentals
KernelsCUDA C++ extends the standard C++ language by allowing the definition of kernels. A kernel is a function that, when called, is executed N times in parallel by N different CUDA threads, as opposed to a regular C++ function which executes only once. Kernels are defined using the __global__ declaration specifier and are invoked using a spec ...
Posted on Sat, 09 May 2026 18:28:05 +0000 by ciber
Setting Up Darknet with YOLO on Ubuntu
GPU Driver Installation
Identify your NVIDIA GPU model and download the appropriate driver from NVIDIA's official site. For example, with a GTX 1080 Ti:
Remove any exisitng NVIDIA drivers:
sudo apt-get remove --purge nvidia\*
Disable the open-source nouveau driver by creating a blacklist file:
sudo tee /etc/modprobe.d/blacklist-nouveau.conf &l ...
Posted on Fri, 08 May 2026 10:06:42 +0000 by yuws
Troubleshooting Common Issues in Docker GPU Training Environments
Checking Your System Configuration
To begin, verify your system's configuration with these commands:
Check the kernel version used by your NVIDIA driver:
cat /proc/driver/nvidia/version
View installed NVIDIA packages:
cat /var/log/dpkg.log | grep nvidia
List all NVIDIA drivers installed:
sudo dpkg --list | grep nvidia-*
Problem 1: NVML Initial ...
Posted on Thu, 07 May 2026 08:30:34 +0000 by harsha