Skip to content Skip to sidebar Skip to footer

Adding Libraries To Portable Python

So I'm currently using portable python and I need to add the neurolab library. On command line I tried moving to the scripts directory and running easy_install.exe neurolab Then a

Solution 1:

This looks like pure Python library. If that is the case you can install it without easy_install by following these steps:

  1. Download from PyPi https://pypi.python.org/pypi/neurolab
  2. Unpack the tar.gz file with Winzip, 7-zip or other tool
  3. Copy contents of "neurolab" (marked on the picture) folder to App\Lib\site-packages\ in Portable Python
  4. Use it !

Post a Comment for "Adding Libraries To Portable Python"