Hi, I have two custom python installations - /home/test/miniconda/envs/ALPHA/ and /home/test/miniconda/envs/BETA/
They both have different module versions. I have a simple script (test-alpha.py) that prints out the version number of certain modules: #!/bin/env python import pandas as pd import numpy as np import scipy as sc import scikit-learn as sk import statsmodel as st def main(): print 'numpy_ver = %s' % np.__version__ print 'pandas_ver = %s' % pd.__version__ print 'scipy_ver = %s' % sc.__version__ print 'scikit_learn = %s' % sk.__version__ print 'statsmodel = %s' % st.__version__ if __name__ == '__main__': main() I use pyinstaller in this way: pyinstaller -F --clean --distpath=/tmp test-alpha.py -p ~/miniconda/envs/ALPHA/bin/:~/miniconda/envs/ALPHA/lib/python2.7/site-packages/ It still looks for packages in /usr/lib/ (the system installation path). What am I doing wrong? Any help will be greatly appreciated. D -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pyinstaller. For more options, visit https://groups.google.com/d/optout.
