I am looking for a way (or a folder) to clone a Git repository so after doing so, I can import it in Python like I import any other library.
Command line:
git clone newpackage.git
Python:
import newpackage
Maybe any Python related folder in my system/user variables?
Cloning the repository is not enough, you also have to actually install it.
Usually;
(You will probably need root/administrator provileges to install a package.)
After installation, you should be able to import the package.