dependencies

CocoaPods: use static lib into a pod

时光怂恿深爱的人放手 提交于 2020-12-05 10:56:30
问题 I have a pod that depends on a static lib (precompiled, source code not available). In this pod project, i drag and drop the folder containing the ".a" file and some other C, Obj-c files. When i try to include this pod in an application, Cocoapods copy all that pod files but not the ".a" file. In the Podspec, im using this to include the precompiled library to my pod s.ios.vendored_frameworks = 'path/a_staticLib.a' The line above copy the file in frameworks (Pods folder), this is normal as it

How to add python dependencies to heroku node server?

纵饮孤独 提交于 2020-12-01 09:59:45
问题 I have a Heroku app that's running Node, but I need to be able to run Python scripts on this server. I'm trying to install my Python dependencies but can't get it to work. I've added both python and node build packs to my project, I've create a virtual environment and successfully installed requirements.txt, but I continue to get module not found errors. How can I properly install Python packages on a Heroku Node server? Heroku shows that I have correctly set both buildpacks: heroku