0

so I'm trying to familiarize myself with the Jupyter Notebook and am running into issues.

When I run the following code in the normal .py file of my PyCharm IDE it runs perfect; however, if I run it in my notebook the [*] never disappears meaning it just continuously runs never ending. Any idea why that might be the case? all answers much appreciated!

import pandas as pd

train_file='C:\Users\DDautel\Anaconda2\PycharmProjects\Kaggle\Titanic\RUN.csv'
test_file='C:\Users\DDautel\Anaconda2\PycharmProjects\Kaggle\Titanic\RUN2.csv'
train=pd.read_csv(train_file)
test=pd.read_csv(test_file)


print train.describe()
print test.describe()
cchamberlain
  • 17,444
  • 7
  • 59
  • 72
Josh Dautel
  • 143
  • 2
  • 16

1 Answers1

0

For others gratification:

Glad it's solved. Make sure python, ipython, jupyter from anaconda (using conda env's possibly) is in your path before others. Order is important.

Back2Basics
  • 7,406
  • 2
  • 32
  • 45