How to install Python package with CMake?

Python is a hydra. Help me tame it.

  • Can someone help me debug this Python error message(s)? So, I'm trying to install a python module called "distribute." Info on the package is available http://pypi.python.org/pypi/distribute. I've been trying to install this package on my computer (Mac Book Pro that I own, if it matters) and I am having trouble figuring out what the error message(s) that I am getting means and how to resolve it so that the package can be installed. I've copied the text of the error message(s) into Google Docs so that you can view it. See https://docs.google.com/document/d/1K_zdl71TSvOZwPk6jT9DJln4WSet6Sfmc_2ZPBjd0lA/edit?hl=en_US. More generally, is there a good process for figuring out these kinds of errors? Thanks for any insight

  • Answer:

    Run "sudo python distribute_setup.py"

dfriedman at Ask.Metafilter.Com Visit the source

Was this solution helpful to you?

Other answers

os.rename(path, new_name) OSError: [Errno 13] Permission denied Trying to move/rename a file without permission. Run the installer as root (or whatever root is called on a mac) In general, the very end of the stack trace tells you what the error was, and everything else tells you where the error occurred.

qxntpqbbbqxl

Are you trying to work on the system python? It's a permission error. one simple solution: $ sudo python distribute_setup.py I have a lot of opinions on the "right way" to set up python on OSX. I tend to like virtualenv off of ``brew install python --framework`` as the foundation.

gregglind

Wow, that worked, thanks. Off to figure out what that does. Appreciate it.

dfriedman

So, my more ridonkulous https://gist.github.com/1583738. It is totally overkill for experiments, but this level of hygiene gets to be useful for development work, to ensure 'non-interference', makes sure different version of libraries don't hurt each other (I do a lot of library development work), etc. Some hints: 1) use gist.github.com or http://pastebin.com/ or such when posting code snippets. They allow editing, code highlight, etc, making it much easier for people to help :) 2) use http://stackoverflow.com and friends to ask and look up answers 3) ``pip`` is awesome, and much preferred over ``easy_install``. ``pip search whatever``, ``pip install whatever``... etc. Off to figure out what that does. --> http://linux.about.com/cs/linux101/g/sudo.htm

gregglind

Run this: sudo !! Now type your password.

deathpanels

If that doesn't work: cd .. chmod 777 . cd

deathpanels

chmod 777 No, don't do that. That makes the directory you're in writable by anyone, which won't do a darned thing in this case because the installer is trying to put files somewhere else. But making a directory writable by anyone is always treating the symptom instead of the cause (in this case, "installing a package systemwide requires administrative privileges").

mendel

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.