0
For example, I have a python code that uses the library import geocoder
. In my machine I’ve used the pip install geocoder
, but when a colleague made a git-clone it didn’t run for lack of this dependency, to solve it just runs the lib installation. But.. and when I have several libs? Do I have to install one by one by the terminal? Or is there some facility like in React npm install
to fetch the libs used and install at once ?
You are using Python virtual environments?
– Woss