Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
Any idea how to install Tensorflow-gpu version 1.4 on Windows 10? I've looked everywhere and cannot seem to figure it out. I'm trying to run Neural Networks on my GPU using Tensorflow, Keras, and Cuda 8.0.
Before installing tensorflow, you will need to make sure that you have CUDA installed on your machine (this will only work if you have an NVIDIA GPU). You will also need cuDNN.
Once you have these installed, you can install it with pip install tensorflow==1.4.0.
For more details, see this tensorflow.org tutorial.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 months ago.
Improve this question
I have cudatoolkit and cudnn packages installed in my anaconda environment but tensorflow does not recognize my GPU device. In some web sources I have seen that you can use Cuda by only installing necessary anaconda packages. So, what I would like to know is that do I have to install NVIDIA Cuda from its website to be able to use it or would it lead to conflicts?
I think something wrong with your environment variables. I can recommend these steps:
Create a new environment
Install required packages:
conda install -c conda-forge cudatoolkit=11.2 cudnn=8.1.0 python3 -m pip install tensorflow
Verify the installation, first import tensorflow
python3 -c "import tensorflow as tf;
Then check the GPU
print(tf.config.list_physical_devices('GPU'))"
This should be work
`
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I tried to reinstall the Anaconda on my laptop because there's some issue with geopandas.
But I found that I couldn't remove it with the official procedure.
I tried the code as below:
conda install anaconda-clean
anaconda-clean --yes
And the terminal just said:
-bash: conda: command not found
I don't know why... It's very frustrating since my Pycharm had an interpreter issue as well.
I cannot find the Pycharm interpreter in Anaconda's bins folder.
Can someone save me? Thank you!
I'm using mac laptop and the version is 10.14.6.
If you are trying to delete Anaconda, and the command conda is not found, that means you succeeded in deleting it.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
I have tried pip, easy_install, pkg update, pkg install, and building from source and all have failed. All I want to do is be able to have python 3.5 run and I am getting desperate at this point.
Is your freeNAS server the kind that is built on Debian?
If so you can try:
sudo apt-get update
sudo apt-get install python3.5
See:
https://askubuntu.com/questions/682869/how-do-i-install-newer-python-versions-using-apt-get
If the above doesn't work, try posting here the output from these commands:
uname -a
cat /etc/issue
cat /proc/version
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I see so many libraries in Enthought Canopy, but couldn't find TensorFlow by google to train the CNN. If it is not there, how could I use TensorFlow Framework in Canopy.
I really don't want to change the platform. Is there any way I can use pip installation to use it in my canopy?
Thanks
You should be able to install tensorflow into Canopy following the instructions here (without using sudo): https://www.tensorflow.org/versions/r0.9/get_started/os_setup.html#pip-installation
In a Canopy Terminal (accessible from the Tools menu) you can run:
OSX
export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/tensorflow-0.9.0-py2-none-any.whl
pip install --upgrade $TF_BINARY_URL
Linux
export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0-cp27-none-linux_x86_64.whl
pip install --upgrade $TF_BINARY_URL
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I'm a Mac newbie. I manually downloaded and installed Python 2.7.9 from the .pkg from python.org. I've come to realize that I should be installing software using package management like Macports or Homebrew as much as possible. My question is: how can I uninstall the Python version that I just installed? I'm hesitant to just delete anything out of my Applications folder for fear of breaking vendor Python.
I found this post How to uninstall Python 2.7 on a Mac OS X 10.6.4? but I'm not sure if I can just follow these same instructions for my purposes. Ideally I'd like to uninstall Python 2.7.9 and then reinstall using Macports or Homebrew. Thanks for any advice you can give!