Installation¶
Stable release¶
To install pyshotgrid, run this command in your terminal:
pip install pyshotgrid
This is the preferred method to install pyshotgrid, as it will always install the most recent stable release.
Use pyshotgrid with ShotGrid Toolkit¶
There are a few ways you can use pyshotgrid
with ShotGrid Toolkit (SGTK) and it will likely
differ from studio to studio how it should be added to the setup.
One of the most straight forward approaches would be adding pyshotgrid
to
the sys.path
in the tank_init.py
.
Here is what you have to do:
Download pyshotgrid
pip download --no-deps --dest /path/to/download/pyshotgrid pyshotgrid
Put it in a central location where everyone can access it
Add the path to the
sys.path
in thetank_init.py
.You are done. :) You are now able to use
pyshotgird
throughout your SGTK setup.