shotgunsoftware / python-api

A Python-based library for accessing Flow Production Tracking API.
https://developer.shotgridsoftware.com/python-api
Other
306 stars 198 forks source link

workaround to install python-api on Fedora Silverblue 37 #272

Open omac777 opened 1 year ago

omac777 commented 1 year ago

On Fedora Silverblue 37 I tried: sudo rpm-ostree install python3-pip but it failed.

Here's a workaround that works for Silverblue 37:

git clone https://github.com/shotgunsoftware/python-api.git sgpythonapi
cd sgpythonapi/
sudo python3 setup.py install

I'm able to create sg and do sg.find()/sg.find_one() after that.