Tom
Tom

Reputation: 34356

Using pip packages in python scripts

I've install this script via pip, but how to a reference these files as part of my script, do I need to use import or some other magic?

Thanks

Upvotes: 0

Views: 93

Answers (1)

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 798446

import isn't magic, it's how things get done.

Upvotes: 2

Related Questions