Jan-08-2020, 07:49 PM
I'm relatively new to python code, but experienced in several others.
I'm trying to get PyInstaller up and going, stepping through the various dependencies and came upon 'pefile' I found the project for it (https://pypi.org/project/pefile/), and because of the network restrictions I am working in, I can't simply 'pip install pefile' as I would like to.
I am required to download the gz file and unpack it to a folder, then install it.
The difficulty I am encountering is that even when I get the install started with the setup.py file associated with the package, it still attempts to reach out to the net to download items. This is of course blocked.
I've combed the internet looking for some procedure to install pefile from a folder, but have only found the standard method to install it. Therefore I'm looking for assistance on how to go about this from someone more experienced in Python.
My Python version is 3.6 and I'm working on Windows 10 32 bit.
Thanks for any guidance you can offer.
Kip...
I'm trying to get PyInstaller up and going, stepping through the various dependencies and came upon 'pefile' I found the project for it (https://pypi.org/project/pefile/), and because of the network restrictions I am working in, I can't simply 'pip install pefile' as I would like to.
I am required to download the gz file and unpack it to a folder, then install it.

The difficulty I am encountering is that even when I get the install started with the setup.py file associated with the package, it still attempts to reach out to the net to download items. This is of course blocked.

I've combed the internet looking for some procedure to install pefile from a folder, but have only found the standard method to install it. Therefore I'm looking for assistance on how to go about this from someone more experienced in Python.
My Python version is 3.6 and I'm working on Windows 10 32 bit.
Thanks for any guidance you can offer.
Kip...