Unable to use Turi Create in Jupyter notebook

982 views Asked by At

I installed Jupyter notebook and TuriCreate and then i imported Turicreate in jupyter notebook. after that to use turicreate i wrote :

sf = turicreate.SFrame('people-example.csv')`

(people-example.csv is a file i wanted to use) but it showed this error :

NameError                                 Traceback (most recent call last)
<ipython-input-15-bcf297396ba4> in <module>
----> 1 sf = turicreate.SFrame('people-example.csv')

NameError: name 'turicreate' is not defined

Please help me with this. Thankyou.

1

There are 1 answers

0
Sai Santhosh On

To resolve this error you need to import turicreate first. To import turicreate use the following command:

    import turicreate as tc