0

I'm having serious problems with wandb on a nVidia pytorch image using arm64 architecture. No info online on how to solve this problem. Cannot even start a project with wandb.init() [python error]: https://i.stack.imgur.com/pdgDT.png


AttributeError Traceback (most recent call last) in 1 #!pip install wandb 2 import wandb ----> 3 wandb.init(project='gpt3')

AttributeError: module 'wandb' has no attribute 'init'

1 Answers1

0

It seems wandb hasn't been installed correctly in your case.

Parul
  • 46
  • 4
  • So.. how do I install it correctly ? Isn’t it pip install Wandb? – Andrés de la Rosa Apr 27 '22 at 11:05
  • Try installing it as follows: `%pip install wandb` . This way the package should get installed into the current kernel as opposed to the instance of Python that launched the notebook. – Parul May 02 '22 at 04:37