Running Neptune in Jupyter Notebook gives NameError that Neptune is not defined

498 Views Asked by At
# Create run in project (Neptune)
run = neptune.init(project='ssraghuvanshi1989/GCI-01-Lung-CT-Segmentation-20220506')

NameError                    Traceback (most recent call last)
C:\Users\SAURAB~1\AppData\Local\Temp/ipykernel_27104/3392926562.py in <module>
      1 # Create run in project
----> 2 run = neptune.init(project='ssraghuvanshi1989/GCI-01-Lung-CT-Segmentation-20220506')

NameError: name 'neptune' is not defined
1

There are 1 best solutions below

0
On

Prince here from neptune.ai,

Before you start make sure you have Neptune installed by running the following pip command:

pip install neptune-client

Then as @John Morton suggested you have to import Neptune in your python script. import neptune.new as neptune

Docs: https://docs.neptune.ai/getting-started/hello-world

Let me know if this helps you