TVAN
TVAN

Reputation: 11

OSError: [Errno 13] Permission denied

I am new to using command line and apologize in advance for any confusion. I am trying to install STAMP but I get an Errno 13 Permission denied as response.

Found existing installation: scipy 0.13.0b1 DEPRECATION: Uninstalling a distutils installed project (scipy) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.

Uninstalling scipy-0.13.0b1:
  Exception:
  Traceback (most recent call last):
    File "/Library/Python/2.7/site-packages/pip-6.1.1-py2.7.egg/pip/basecommand.py", line 246, in main
      status = self.run(options, args)

    File "/Library/Python/2.7/site-packages/pip-6.1.1-py2.7.egg/pip/commands/install.py", line 352, in run
      root=options.root_path,
    File "/Library/Python/2.7/site-packages/pip-6.1.1-py2.7.egg/pip/req/req_set.py", line 687, in install
      requirement.uninstall(auto_confirm=True)

    File "/Library/Python/2.7/site-packages/pip-6.1.1-py2.7.egg/pip/req/req_install.py", line 730, in uninstall
      paths_to_remove.remove(auto_confirm)

    File "/Library/Python/2.7/site-packages/pip-6.1.1-py2.7.egg/pip/req/req_uninstall.py", line 126, in remove
      renames(path, new_path)

    File "/Library/Python/2.7/site-packages/pip-6.1.1-py2.7.egg/pip/utils/__init__.py", line 292, in renames
      shutil.move(old, new)

    File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 302, in move
      os.unlink(src)

  OSError: [Errno 13] Permission denied: '/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/scipy-0.13.0b1-py2.7.egg-info'

I know this issue has been covered in depth but I cannot figure out how to apply the answers to my specific problem. Any ideas? Thank you in advance TVAN

Upvotes: 1

Views: 4993

Answers (1)

U97F3
U97F3

Reputation: 11

sudo pip install STAMP

whenever you see the phrase like this:"Permission denied", you should look up for this command.

Upvotes: 1

Related Questions