Saturday 25 March 2017

referencing python libraries in a separate folder

Im pip-ing all my libraries to a folder called lib. My source code is in the directory scr.



My directory structure



Folder
-lib
-different libraries
-scr
-main.py



I just want to reference my libraries so my code will run.

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...