Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
Signed-off-by: Bubbles The Dev <152947339+KernFerm@users.noreply.github.com>
  • Loading branch information
KernFerm authored Sep 4, 2024
1 parent 564b691 commit 66c6a5c
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
14 changes: 14 additions & 0 deletions cudnn_instructions.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
console.log("cuDNN is not installed. Please follow these steps to download and install cuDNN 8.9.7 manually:");
console.log("1. Go to the NVIDIA cuDNN download page: https://developer.nvidia.com/rdp/cudnn-download");
console.log("2. Log in with your NVIDIA Developer account.");
console.log("3. Download the file 'cudnn-windows-x86_64-8.9.7.29_cuda11-archive.zip'.");
console.log("4. Extract the contents of the downloaded zip file.");
console.log("5. Copy the following files to the CUDA installation directory:");
console.log(" - Copy 'cudnn64_8.dll' to 'C:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v11.8\\bin'");
console.log(" - Copy 'cudnn.h' to 'C:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v11.8\\include'");
console.log(" - Copy 'cudnn.lib' to 'C:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v11.8\\lib\\x64'");
console.log("6. Press any key to continue once you have moved and unzipped the folder.");
console.log("Note: If you encounter issues, you might need to manually add the following paths to your system PATH:");
console.log(" - 'C:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v11.8\\bin'");
console.log(" - 'C:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v11.8\\libnvvp'");
console.log(" - 'C:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v11.8\\lib'");
27 changes: 27 additions & 0 deletions nodejs-instructions.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Instructions for installing Node.js

Write-Host "Please follow these steps to install Node.js:"

# Step 1: Download Node.js
Write-Host "1. Go to the Node.js download page: https://nodejs.org/"
Write-Host "2. Download the LTS (Long Term Support) version for Windows."

# Step 2: Install Node.js
Write-Host "3. Run the downloaded installer."
Write-Host "4. Follow the installation prompts and accept the default settings."

# Step 3: Verify the installation
Write-Host "5. Open a new PowerShell window."
Write-Host "6. Verify the installation by running the following commands:"
Write-Host " - node -v"
Write-Host " - npm -v"
Write-Host " You should see the version numbers for Node.js and npm (Node Package Manager)."

# Step 4: Run your JavaScript file
Write-Host "7. Navigate to the directory where your JavaScript file is located using the 'cd' command."
Write-Host "8. Run your JavaScript file using Node.js by typing:"
Write-Host " node your_script_name.js"
Write-Host " Replace 'your_script_name.js' with the name of your JavaScript file."

# Pause to allow the user to read the instructions
Pause

0 comments on commit 66c6a5c

Please sign in to comment.