Set up Tensorflow Developement Environment
Cusolver64 Error!!
The versions used in this post are certain to be compatible.
If Cuda Tool Kit version is not compatible with your python tensorflow command
'pip install tensorflow installs tensorflow version 2.5.0(This is compatible with Cuda toolkit 11.2)' - 22-08-12
To avoid these Error Case : Check your Cuda Version with python tensorflow version or follow up this post
https://developer.nvidia.com/cuda-11.2.0-download-archive
https://www.python.org/downloads/release/python-390/
https://www.anaconda.com/products/distribution
After install these tools, Start Anaconda (administrator)
1. python -m pip install --upgrade pip
2. conda create -n tensorflow python=3.9
3.activate tensorflow
4. pip install tensorflow
AND TEST
(tensorflow) > pip install tensorflow (22.08.12 this command will install tensorflow 2.5.0 which is compatible with cuda 11.2)
(tensorflow) > python
>>> import tensorflow as tf
>>> hello = tf.constant('Hello, TensorFlow!')
>>>sess = tf.Session()
>>> print(sess.run(hello))
Hello, TensorFlow!
>>> a = tf.constant(10)
>>> b = tf.constant(22)
>>>print(sess.run(a+b))
32
'PC > 윈도우' 카테고리의 다른 글
모니터 알트탭 딜레이 해결!!! 방법 공유드립니다. ALt Tab 딜레이 해결과정 (2) | 2023.10.07 |
---|---|
윈도우에서 특정 프로그램 실행 막기 / 특정 프로그램 실행 금지 (0) | 2023.03.18 |
윈도우 공유폴더 설정하기(처음부터 끝까지, 작동확인) (0) | 2022.07.23 |
서든어택 주사율 60hz 로 고정되는 증상 해결방법 (1) | 2022.04.26 |
PC, 컴퓨터를 Chromecast(크롬캐스트) 없이 미러링 사용하기 (3) | 2022.03.13 |