windows - Installed Anaconda 4.3.1 (64-bit) which contains Python 3.6 but pip3 missing, cannot install tensorflow -
i downloaded latest stable anaconda install off continuum website turned out anaconda 4.3.1 (64-bit) , comes python 3.6.0. in windows 10 environment.
however pip3 missing , cannot install python 3.x packages via pip3.
what doing wrong?
if not have environment installed python 3+ default pip believe since pip3 alias pip.
pip install --upgrade pip
or can associated python binary too; if executable python3, use that:
python3 -m pip install --upgrade pip
after check:
pip --version
otherwise 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 conda providing 3.5 one: from
pip install https://testpypi.python.org/packages/db/d2/876b5eedda1f81d5b5734277a155fa0894d394a7f55efa9946a818ad1190/tensorflow-0.12.1-cp36-cp36m-win_amd64.whl
since wheel had version undesirable instead install wheel directly gohlke's windows binaries repository :
download wheel python 3.6 here , install wheel:
cd
directory containing .whl
file:
pip install some-package.whl
Comments
Post a Comment