简体   繁体   中英

Installation of Tensorflow gpu

I am trying to install Tensorflow GPU but this error keeps popping up on my Anaconda prompt. What should I do?

Could not install packages due to an  EnvironmentError: [WinError 5] 
Access is denied: 'c:\\users\\hp user\\anaconda3\\envs\\tensorflow\\Lib\\site-packages\\numpy\\.libs\\libopenblas.BNVRK7633HSX7YVO2TADGR4A5KEKXJAW.gfortran-win_amd64.dll' 
Consider using the `--user` option or check the permissions.

您使用的用户帐户无权通过 pip 执行全局安装,您需要在命令中添加 --user 命令,例如
pip install tensorflow-gpu --user

由于权限问题而导致的问题,因此您必须以管理员模式打开cmd并运行以下命令

pip install tensorflow-gpu

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM