I'm wondering whether it is possible to use classes and methods contained within a library without:
- Importing the library through
pip install - Moving folders into
site-packages - Editing the system PATH
So far the answers I've seen on stack overflow use the methods listed above but my specific use-case requires that I don't pip install things and that the system PATH remains unchanged.
The specific library I'm interested in is Basemap
Is this possible and if so, how?