PDA

View Full Version : [SOLVED] Programming Issue with python



jorge23
July 3rd, 2015, 08:51 PM
I'm trying to run a python program using ipython notebook on Ubuntu 14.04.

I found an older thread here that seems to have the solution that I'm looking for, however its a solution for Ubuntu 12.04.

Here's the link: http://ubuntuforums.org/showthread.php?t=2138623

I downloaded the library that I needed and extracted it in my downloads but when I type in this command "./configure --prefix=usr/local/libpng" into the terminal, the terminal outputs: "configure: error: expected an absolute directory name for --prefix: usr/local/libpng".

Is it that the specific command that I'm telling the terminal has changed over the versions?

Or is it that the library that I downloaded doesn't contain what ever I told the terminal to look for?

I'm fairly new to Ubuntu, so explain like I'm five please.

steeldriver
July 3rd, 2015, 11:59 PM
Hello and welcome to the forums

Not sure what you're trying to install, however the command probably needs to be



./configure --prefix=/usr/local/libpng

(note the leading / on the file path)

jorge23
July 4th, 2015, 10:18 AM
Yes you were correct, it did need that "/"!

Thank you very much!