[python] ImportError : tensorflow라는 모듈이 없습니다.

이 오류를 도와주세요

내 서버에 tensorflow 모듈을 설치했으며 아래 정보가 있습니다.

15IT60R19@cpusrv-gpu-109:~$ pip show tensorflow
Name: tensorflow
Version: 1.0.0
Summary: TensorFlow helps the tensors flow
Home-page: http://tensorflow.org/
Author: Google Inc.
Author-email: opensource@google.com
License: Apache 2.0
Location: /home/other/15IT60R19/anaconda2/lib/python2.7/site-packages
Requires: mock, numpy, protobuf, wheel, six

하지만 tensorflow를 가져 오려고하면 다음과 같은 오류가 발생합니다.

>>> import tensorflow as tf
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named tensorflow

내 파이썬 버전은 다음과 같습니다.

Python 2.7.12 |Anaconda 2.5.0 (64-bit)| (default, Jul  2 2016, 17:42:40)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-1)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
Anaconda is brought to you by Continuum Analytics.
Please check out: http://continuum.io/thanks and https://anaconda.org

sol1 에서 주어진 솔루션을 시도했습니다.

Sol2

서버에 대한 sudo 액세스 권한이 없습니다. pip 만 사용하여 모듈을 설치할 수 있습니다.



답변

원하는 버전과 –ignore-installed 옵션을 사용하여 tensorflow를 다시 설치하십시오.

pip install tensorflow==1.2.0 --ignore-installed

이 명령을 사용하여 동일한 문제를 해결했습니다.


답변

이 오류를 받았을 때 더 기본적인 문제가있었습니다.

“설치 확인”지침에 다음을 입력하라는 메시지가 표시됩니다. python

그러나 2.7과 3.6이 모두 설치되어 있습니다. pip3 을 사용하여 tensorflow 를 설치 했기 때문에 다음 을 입력해야했습니다. python3

올바른 버전을 사용하여 “tensorflow”모듈을 가져올 수 있습니다.


답변

다음을 사용하여 Tensorflow가 성공적으로 설치되었는지 확인합니다.

 pip3 show tensorflow

당신이 뭔가를 얻는다면

Name: tensorflow
Version: 1.2.1
Summary: TensorFlow helps the tensors flow
Home-page: http://tensorflow.org/
Author: Google Inc.
Author-email: opensource@google.com
License: Apache 2.0
Location: /usr/local/lib/python3.5/dist-packages
Requires: bleach, markdown, html5lib, backports.weakref, werkzeug, numpy, protobuf, wheel, six

다음과 같이 tensorflow 위치의 경로를 추가 할 수 있습니다.

export PYTHONPATH=/your/tensorflow/path:$PYTHONPATH.


답변

Anaconda3의 경우 Anaconda Navigator에 설치하면됩니다.
여기에 이미지 설명 입력


답변

사용자 사이트에 tensorflow를 설치해보세요-이 설치는 귀하에게만 적용됩니다.

pip install tensorflow –user


답변

첫 번째가 작동하지 않을 수 있으므로 이것이 필요할 수 있습니다.

python3 -m pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.12.0-py3-none-any.whl


답변

이것을 시도해 볼 수 있습니다.

$conda install -c conda-forge tensorflow