Skip to Main Content

DevOps, CI/CD and Automation

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Installing Tensorboard -- running into issue 'superuser privileges'

da bearsNov 17 2021 — edited Nov 17 2021

Thank you to anyone who attempts to help. I've been trying relentlessly to install packages to get my algorithm to run. (Packages below) the very last package, tensorboard, requires me to have python3-devel installed. However, when I install python3-devel, I'm told I cannot due to a 'superuser privileges' error,
I'm installing these packages on a virtual environment here:
Screen Shot 2021-11-17 at 2.16.09 PM.pngAfter, this I took the prompts advice and tried running 'dnf install python3-devel'
Screen Shot 2021-11-17 at 2.13.16 PM.pngLow and behold, the prompt's advice leads me to an error.
Any guidance would be appreciated.

DateTime
cycler==0.10.0
future==0.18.2
gym==0.17.2
kiwisolver==1.2.0
matplotlib==3.2.1
numpy==1.18.5
Pillow==7.1.2
pyparsing==2.4.7
python-dateutil==2.8.1
six==1.15.0
torch==1.5.0
torchvision==0.6.0
norse ==0.0.3
tensorboard

This post has been answered by da bears on Nov 17 2021
Jump to Answer

Comments

da bears

I tried installing various versions of tensorboard to see if any of them work--it was not a successful strategy.

da bears
Answer

Eureka! I think the answer is that we have to install alphabet soup before tensorboard. I found this article: https://blogs.oracle.com/wim/post/using-a-baremetal-gpu-shape-in-oracle-cloud-infrastructure-with-oracle-linux-7-and-tensorflow
Slight change in the install with LINUX 8:
sudo dnf -y install python3-pip python3-devel atlas atlas-devel gcc-gfortran openssl-devel libffi-devel
Then we run the big boy:
python3 -m pip install tensorboard==2.4.0

Marked as Answer by da bears · Nov 17 2021
1 - 2

Post Details

Added on Nov 17 2021
2 comments
338 views