I am developing Python 2.7 on several computers, some of which I do not have permission to install software. So I am using Portable Python . One of the packages I need to use is h5py ; however, since Portable Python installs without modifying the registry, the h5py installer h5py not see it as a valid Python installation. In addition, simply extracting the h5py source to the user folder F:\py\include and adding F:\py\include to the PYTHONPATH environment variable does not work, since import h5py an ImportError: Cannot import name _errors .
How to install h5py using Portable Python 2.7?
source share