I am trying to install TensorFlow on Anaconda (My Python - version 3.5.2).
When I run:
(tensorflow)C:> pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.0.1-cp35-cp35m-win_amd64.whl
According to the manual at Tensorflow.org, the following tips appear:
Exception: Traceback (most recent call last): File "C:\Users\Anaconda3\lib\site-packages\pip\basecommand.py", line 215, in main status = self.run(options, args) File "C:\Users\Anaconda3\lib\site-packages\pip\commands\install.py", line 317, in run prefix=options.prefix_path, File "C:Anaconda3\lib\site-packages\pip\req\req_set.py", line 742, in install **kwargs File "C:\Users\Anaconda3\lib\site-packages\pip\req\req_install.py", line 831, in install self.move_wheel_files(self.source_dir, root=root, prefix=prefix) File "C:\Users\Anaconda3\lib\site-packages\pip\req\req_install.py", line 1032, in move_wheel_files isolated=self.isolated, File "C:\Users\Anaconda3\lib\site-packages\pip\wheel.py", line 346, in move_wheel_files clobber(source, lib_dir, True) File "C:\Users\Anaconda3\lib\site-packages\pip\wheel.py", line 324, in clobber shutil.copyfile(srcfile, destfile) File "C:\Users\Anaconda3\lib\shutil.py", line 115, in copyfile with open(dst, 'wb') as fdst: PermissionError: [Errno 13] Permission denied: 'C:\\Users\\Anaconda3\\Lib\\site-packages\\numpy\\core\\multiarray.cp35-win_amd64.pyd'
I do not know what causes this error. Can anyone help me with this?
source share