I successfully added pip to python on my ubuntu. However when I try to install visvis using pip:

pip install visvis

I get the following error:

error: could not create '/usr/local/lib/python2.7/dist-packages/visvis': Permission denied

How do I solve this? Btw, I am downloading visvis to easily plot hundreds of spheres. Any suggestions on what else I could use?

有帮助吗?

解决方案

Run the command as superuser to install the package system-wide.

For example, use sudo:

sudo pip install visvis

其他提示

Better if you use virtualenv for your packages: http://www.virtualenv.org/en/latest/

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top