Forums

Additional packages: PayPal/Google Cloud

Evening,

I've got a Flask app going, and I'm currently trying to run the PayPal REST SDK and Google Cloud Storage packages out of a 'vendor' directory. PayPal seems fine with some tweaking, but Google is giving me a headache. Just wondering if these packages could be added to the 'batteries included' list to save me some work? Or are there any alternatives?

Cheers, Richie

Which kind of packages do you mean -- are they Python modules or something else? If they're the Python ones, there's a pretty easy way to install them -- check out this help page. For example to install the Google Cloud Storage Python package for Python 3.6, you'd just run

pip3.6 install --user google-cloud-storage

That's perfect, thank you!

Glad I could help :-)