Reputation: 26333
How to install tf with spyder/anaconda versions of python (3.7), pip, venv ? (Win10)
I could check that i am running 64-bit python and pip, venv are installed. I downloaded a wheel file from tensorflow website, i intend to run it using pip.
Should i add an address to enviromnent variable PATH
? In cmd, python3
is not recognized, i guess that i am not pointing to the right directory. (I can't find the Python
directory as it does not appear in User/appdata/local
where no Program
folder is to be found.)
TF install guides mentions the creation of a virtual env with
virtualenv --system-site-packages -p python3 ./venv
virtualenv
is not recognized as a command, etc.
Would you like to outline clear step by step guideline to install TF using pip ?
Upvotes: 0
Views: 3444
Reputation: 298
I would avoid using pip when you are using Anaconda. Try using the Anaconda Prompt that came with the Anaconda Package. After that I suggest creating a new environment in Anaconda and install tensorflow using
conda create --name test python=3.7 tensorflow
Upvotes: 1