2017-03-17 5 views
1

Ich versuche, Tensorflow zu python3 mit virtualenv installieren, die Anweisungen auf dieser Webseite folgen. Ich benutze Mac Sierra und python2.7 und python3.5 sind auf meinem Rechner. https://www.tensorflow.org/install/install_mac#installing_with_virtualenvInstallieren Tensorflow zu Python3 mit Virtualenv

Mit dieser Methode arbeitete für python2.7 in Ordnung, aber nicht für python3.5. Das Folgende ist die Fehlermeldung, die ich ausgegeben habe pip3 install --upgrade tensorflow.

Installing collected packages: tensorflow, setuptools 
Exception: 
Traceback (most recent call last): 
    File "/Library/Python/2.7/site-packages/pip/basecommand.py", line 215, in main 
    status = self.run(options, args) 
    File "/Library/Python/2.7/site-packages/pip/commands/install.py", line 317, in run 
    prefix=options.prefix_path, 
    File "/Library/Python/2.7/site-packages/pip/req/req_set.py", line 742, in install 
    **kwargs 
    File "/Library/Python/2.7/site-packages/pip/req/req_install.py", line 831, in install 
    self.move_wheel_files(self.source_dir, root=root, prefix=prefix) 
    File "/Library/Python/2.7/site-packages/pip/req/req_install.py", line 1032, in move_wheel_files 
    isolated=self.isolated, 
    File "/Library/Python/2.7/site-packages/pip/wheel.py", line 346, in move_wheel_files 
    clobber(source, lib_dir, True) 
    File "/Library/Python/2.7/site-packages/pip/wheel.py", line 317, in clobber 
    ensure_dir(destdir) 
    File "/Library/Python/2.7/site-packages/pip/utils/__init__.py", line 83, in ensure_dir 
    os.makedirs(path) 
    File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/os.py", line 157, in makedirs 
    mkdir(name, mode) 
OSError: [Errno 13] Permission denied: '/Library/Python/2.7/site-packages/tensorflow-1.0.1.dist-info' 
You are using pip version 8.1.2, however version 9.0.1 is available. 
You should consider upgrading via the 'pip install --upgrade pip' command. 

Jede Hilfe wäre willkommen.

Antwort

1

Der für den Virtualenv verwendete Interpreter muss bei der Erstellung angegeben werden. Verwenden Sie in diesem Fall virtualenv -p python3 ./tensorflow, um python3 als Interpreter für dieses spezielle virtualenv anzugeben.

Verwandte Themen