Is there a way how to import Python library like pandas into script without using pip install? I already tried downloading .whl file or raw source code and try to use
sys.path.append(path to library)
import pandas
what I found should be solution but it's not working. The thing is I can't use any external program or pip to install libraries. Is there a way how to do it by linking it explicitly?
Thanks