Installed Anaconda 4.3.1 (64-bit) containing Python 3.6 but pip3 is missing cannot install tensorflow

I downloaded the latest stable version of Anaconda from the Continuum site, which turned out to be Anaconda 4.3.1 (64-bit) and ships with Python 3.6.0. I am on Windows 10 environment.

However pip3 is missing and I cannot install Python 3.x packages via pip3.

What am I doing wrong?

+7


source to share


5 answers


Unless you have another environment installed, python 3+ will just pip by default, I suppose, since pip3 is just an alias for pip.

pip install --upgrade pip

      

or you can do it with the appropriate Python binary; if it runs like python3 use it:

python3 -m pip install --upgrade pip

      

after this check:

pip --version 

      

otherwise just try pip-3.6



for tensorflow on conda:

pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/gpu/tensorflow_gpu-1.0.1-cp35-cp35m-win_amd64.whl 

      

for python 3.6 due to conda provided 3.5: from

pip install https://testpypi.python.org/packages/db/d2/876b5eedda1f81d5b5734277a155fa0894d394a7f55efa9946a818ad1190/tensorflow-0.12.1-cp36-cp36m-win_amd64.whl

      

Since this wheel had an unwanted version, we could have installed the Wheel instead directly from the gohlke binary repository window:
Download the wheel for Python 3.6 from here , and then install the wheel:

cd

to the directory containing the file .whl

:

pip install some-package.whl

      

+7


source


Solution: - (Note: - This will definitely work for everyone!)

Step 1: - conda search picton

Step 2: - installing conda python = 3.5.2



Step 3: - pip install tensor flow

Step 4: - import tensorflow as tf

0


source


I have Windows10, 64bit, Anaconda4.3 with Python 3.6.

Sopraton Kartika worked for me. Before that I tried everything including "conda create -n tensorflow python = 3.5" but it didn't work (although "python -version" gave 3.5.3).
0


source


You should be able to install tensorflow using

$ conda install -c conda-forge tensorflow

0


source


easy_install pip

I used it to solve the problem of setting pip in minicond. sometimes the clause is not set properly, but claims yes

0


source







All Articles