I have the neurolab
package version 0.2.0
in /usr/local/lib/python2.7/dist-packages
.
Now I would like to install neurolab
if you are using windows. type in powershell or terminal:
python -m pip install WHATEVER
The problem is that your /home/username/.pip/pip.log
file is only writable by root, so when you try to use pip
as another user you don't have permission to update the log file and the whole operation fails.
Changing the ownership of the log file (using sudo chown username:username /home/username/.pip/pip.log
) or removing it (using sudo rm /home/username/.pip/pip.log
) should fix your problem.