Question

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?

Était-ce utile?

La solution

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

For example, use sudo:

sudo pip install visvis

Autres conseils

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

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top