PDA

View Full Version : [ubuntu] Python3 Config file?



vaguy02
February 22nd, 2010, 11:41 PM
Everyone,

I've installed python3 on Ubuntu 9.10, but the application I'm trying to install requires the python3-config file. This is not loaded in the /usr/bin/ dir with the python3 command. Is there a way to generate or load this file?

Thanks,
Rob

oldfred
February 23rd, 2010, 01:17 AM
The config file should be part of the application. python uses configparser to process it.
python3 ./cfgexample.py
There was a bug.
http://mail.python.org/pipermail/new-bugs-announce/2009-September/005854.html

vaguy02
February 23rd, 2010, 02:37 AM
Actually what I needed was python3-dev, this installed the program "python3-config" in /usr/bin/

Thanks,
Rob