Adding libraries to portable python

2019-07-11 21:33发布

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 another command line window opens and it's found the neurolab project on google code and its listing files. Then it zips through a ton of lines and the window closes.

However neurolab isn't added to my portable python...

Any help would be much appreciated

1条回答
smile是对你的礼貌
2楼-- · 2019-07-11 21:58

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 !
查看更多
登录 后发表回答