[DiscordArchive] but how do I install these packages into that folder?
[DiscordArchive] but how do I install these packages into that folder?
Archived author: Skarn • Posted: 2018-10-22T09:32:58.719000+00:00
Original source
but how do I install these packages into that folder?
Archived author: Skarn • Posted: 2018-10-22T09:33:32.169000+00:00
Original source
pip seems to be doing it fine when I do it manually with pip install package_name -t custom_path
Archived author: Skarn • Posted: 2018-10-22T09:33:42.977000+00:00
Original source
but how can I do the same with distutils script?
Archived author: Adys • Posted: 2018-10-22T09:34:12.794000+00:00
Original source
The way vendoring works is you add like a third_party/ or vendoring/ python submodule of some kind, then you prepend that to the sys.path
Archived author: Adys • Posted: 2018-10-22T09:34:22.944000+00:00
Original source
very early in your initialization (before all imports)
Archived author: Skarn • Posted: 2018-10-22T09:34:37.041000+00:00
Original source
that is what I did