To anyone else searching, this is the one you have been looking for. A walkthrough smoother than butter. You,Sir , are a world class instructor and deserve the utmost recognition for this intuitive demonstration. Liked and subscribed.
Please add me to the list of people praising your efforts here in creating this video. Thank you so much. Your assistance was invaluable. Thanks for sharing your knowledge so completely and simply.
Thanks for the tutorial. I was so frustrated because with different tutorials on the internet there were always different strange error messages that I couldn't understand. (I want to switch from Windows to Ubuntu and don't know Linux well yet) I spent several evenings digging through forums and installation guides. This guide is the first one that works as stated in the video.
Hi, thank you for the video. I solved these problems with TensorFlow 2.16.1 Thanks again!!!! Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered
Thank you SO MUCH !!! I wasted two evening trying to install tf & cuda on my machine. this worked beautifully. Can NVIDIA learn to write some documentation.....
Man, for me it was rocket science, but I did it finally. Kudos to you. I had to reinstall everything from scratch 3 times, because everytime a single mistake on the way ruined everything. Thank you very much! On another note, why does it have to be super lengthy? Can't they just create a package for every GPU that's capable of tf and py to have all these features in it installed, or ready to be installed?
@@TechJotters24 I have the same issue, no errors. I run test_cudnn and it outputs 'cuDNN initialization failed.' All the previous steps worked though. I have an RTX3060 laptop.
@@TechJotters24 No errors before. Everything exactly like the example. Do you have any tips to debug what is happening when I run "./test_cudnn"? I have an RTX 3050 laptop
@@TravelJotter24 I am already sending you the errors I have so far. The only thing I have is "cuDNN initialization failed". The script test_cudnn.c states the following "// test_cudnn.c #include #include int main() { cudnnHandle_t handle; cudnnStatus_t status = cudnnCreate(&handle); if (status == CUDNN_STATUS_SUCCESS) { printf("cuDNN successfully initialized. "); } else { printf("cuDNN initialization failed. "); } cudnnDestroy(handle); return 0; }" So if status was CUDNN_STATUS_SUCCESS it would print "cuDNN successfully initialized". In my case status was not CUDNN_STATUS_SUCCESS because it has printed "cuDNN initialization failed". What I am asking is if you have any tips to understand why cuDNN was not initialized. And even tips to debug the initialization so I can send you the errors
Not sure if you're still struggling with this but make sure you are trying the 12.1.1 version of CUDA toolkit instead of just 12.1 . For some reason 12.1 can't use gcc 13 but 12.1.1 can.
Can we delete all the downloaded files inside the download folder once everything is working ? Such as tensorRT.gz , cudnn.tar and cudnn.tar extracted folder.
To anyone else searching, this is the one you have been looking for. A walkthrough smoother than butter. You,Sir , are a world class instructor and deserve the utmost recognition for this intuitive demonstration. Liked and subscribed.
Thank you sir!!! And sorry for the late reply.
Please add me to the list of people praising your efforts here in creating this video. Thank you so much. Your assistance was invaluable. Thanks for sharing your knowledge so completely and simply.
You should add a "thank you" button to your videos so you can be rewarded for your work
Thanks for the tutorial. I was so frustrated because with different tutorials on the internet there were always different strange error messages that I couldn't understand. (I want to switch from Windows to Ubuntu and don't know Linux well yet) I spent several evenings digging through forums and installation guides. This guide is the first one that works as stated in the video.
Glad I could help!
I installed on my ubuntu 22.04 with RTX 3050 without miniconda. And finally I can start my TF jourrney. Thank you so much
how
Hi, thank you for the video.
I solved these problems with TensorFlow 2.16.1
Thanks again!!!!
Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered
Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered
Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered
Hi, could you tell me how you solved this problem?
@@szymonsitarz5007 Hi, I just added the version option when I installed TensorFlow! Only 2.16.1 worked for me.
@@brianpark999 Thank you so much! That solved my problem :D
@@szymonsitarz5007 My pleasure!! I'm so glad to hear that!!!!!
Been looking for this video for ages. Cant thank you enough!
you deserve 1M likes, I have been trying to install this for months, even the official TF doesnt show how to install tensorrt.
It's gate keeping. Plain and simple. It's all by design. So drunk grandpa's can't build a terminator.
Thank you so much for this amazing and complete tutorial 🤗
Great video. This was my tenth attempt and your video finally helped. Thank you!
Thank you, this video helped a lot.
Thanks for the excellent and simple tutorial !!
Thank you SO MUCH !!! I wasted two evening trying to install tf & cuda on my machine. this worked beautifully. Can NVIDIA learn to write some documentation.....
You're welcome!
You just saved my life, bro! Big thumbs up. Keep up the good works. ❤
Glad to hear that
Man, for me it was rocket science, but I did it finally. Kudos to you. I had to reinstall everything from scratch 3 times, because everytime a single mistake on the way ruined everything. Thank you very much!
On another note, why does it have to be super lengthy? Can't they just create a package for every GPU that's capable of tf and py to have all these features in it installed, or ready to be installed?
This is what I am looking for.
Excellent. You're the man.
Glad to help
You are the Boss! You have earned a like and a subscribe!
Thanks for your support!!!
This tutorial is great!
Amazing! Thank you so much!!
Thanks bro.
Thank you . Apparently tensorflow installation guide itself mentions to use just pip and not conda and it's easier Ig
I tried the Tensorflow Pip installation. It installs but has a Tensorflow error.
Thank you!
excellent video - thank so much! (now subcribed to your channel)
Awesome, thank you!
Hi, GPU: 0 why? if cuda and cudnn installed properly then GPU should be 1 instead of 0.
does the tensorflow work on GPU or on CPU?
On the step: ./test_cudnn at 11:09 my initialization has failed. Any thoughts on how to handle it?
What errors did you get?
@@TechJotters24 I have the same issue, no errors. I run test_cudnn and it outputs 'cuDNN initialization failed.'
All the previous steps worked though. I have an RTX3060 laptop.
@@TechJotters24 No errors before. Everything exactly like the example. Do you have any tips to debug what is happening when I run "./test_cudnn"? I have an RTX 3050 laptop
@@rafamarinho87hi, can you please send me the errors? I’ll check it.
@@TravelJotter24 I am already sending you the errors I have so far. The only thing I have is "cuDNN initialization failed". The script test_cudnn.c states the following "// test_cudnn.c
#include
#include
int main() {
cudnnHandle_t handle;
cudnnStatus_t status = cudnnCreate(&handle);
if (status == CUDNN_STATUS_SUCCESS) {
printf("cuDNN successfully initialized.
");
} else {
printf("cuDNN initialization failed.
");
}
cudnnDestroy(handle);
return 0;
}" So if status was CUDNN_STATUS_SUCCESS it would print "cuDNN successfully initialized". In my case status was not CUDNN_STATUS_SUCCESS because it has printed "cuDNN initialization failed".
What I am asking is if you have any tips to understand why cuDNN was not initialized. And even tips to debug the initialization so I can send you the errors
im getting when i try to run the sudo sh command stating failed to verify the gcc version
how to fix it?
Not sure if you're still struggling with this but make sure you are trying the 12.1.1 version of CUDA toolkit instead of just 12.1 . For some reason 12.1 can't use gcc 13 but 12.1.1 can.
YOU ARE SUCH A LEGEND!!! You made this just for us 🥹🥹🥹🥹 I will acknowledge you in my work. Thanks a lottttt
Thank you!!!
Can we delete all the downloaded files inside the download folder once everything is working ?
Such as tensorRT.gz , cudnn.tar and cudnn.tar extracted folder.