0

I am trying to get this Django Project to run locally https://github.com/vitorfs/bootcamp

I am following the installation guide https://github.com/vitorfs/bootcamp/wiki/Installing-and-Running-Bootcamp

but when I try to migrate I get this error

$ pip install psycopg2
Collecting psycopg2
  Using cached psycopg2-2.6.2.tar.gz
    Complete output from command python setup.py egg_info:
    running egg_info
    creating pip-egg-info/psycopg2.egg-info
    writing pip-egg-info/psycopg2.egg-info/PKG-INFO
    writing top-level names to pip-egg-info/psycopg2.egg-info/top_level.txt
    writing dependency_links to pip-egg-info/psycopg2.egg-info/dependency_links.txt
    writing manifest file 'pip-egg-info/psycopg2.egg-info/SOURCES.txt'
    warning: manifest_maker: standard file '-c' not found

    Error: pg_config executable not found.

    Please add the directory containing pg_config to the PATH
    or specify the full executable path with the option:

        python setup.py build_ext --pg-config /path/to/pg_config build ...

    or with the pg_config option in 'setup.cfg'.

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /private/var/folders/8l/nwwcj_1d2k5_wf3td439ftfh0000gn/T/pip-build-w76_ywwu/psycopg2/

So I tried to remove psycopg2 and migrate it, then I receive FILE PERMISSION 0644 Invalid Token. I did that to try and install psycopg2 using pip.

I am using a virtual env.

Martin Tournoij
  • 23,567
  • 24
  • 90
  • 127

1 Answers1

1

If you are using Python 3, you should provide the token on octals format. In your Django settings.py, change to: FILE_UPLOAD_PERMISSIONS = 0o644.