Reputation: 37
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.
Upvotes: 1
Views: 1058
Reputation: 1
To resolve this error you need to import turicreate first. To import turicreate use the following command:
import turicreate as tc
Upvotes: -2