Ubuntu :: Install Python Program From Source?

Dec 16, 2010

I downloaded this programs source and I'm having a hard time figuring out how to install it. I assume it is python source? I tried downloading the debian file but could not figure out how to install it aswell. I downloaded the software from [URL]

View 9 Replies


ADVERTISEMENT

Ubuntu :: How To Install Program From Source Code?

Nov 2, 2010

I am wonder if somebody could take the time to teach me to install or compile a program from source.I have downloaded ZSNES from sourceforge but cannot figure out how to install it from the command prompt or using the package manager.

View 9 Replies View Related

General :: Follow Directions To Install A Program From Source Code (tar.gz File)?

May 11, 2010

I had Ubuntu for awhile, now I installed Fedora12, I'm trying to follow directions to install a program from source code (tar.gz file) I have the February 2010 issue of Linux Format, and am trying to follow it step by step. I copied gnurobbo off their disk to my desk top, which copied it. Then I did the cd command, then I did the ls command and it didn't show me anything but a line saying desktop and a few other things like pictures movies etc. so I did cd gnurobbo-0.64 and it says no such file. I have been trying this for a few times and I think I'm going crazy.

View 3 Replies View Related

Software :: Open Source Dvd - Cd Copy Program - Burning On The Fly Program?

Dec 14, 2009

Is there anything like burning rom from nero or roxio cd/dvd copier. Do you know of any dvd copying program? like without making the image and then burning with just one process just copy the disc sorta program like roxio dvd copier? I wanted to make copies of movies I made a dvd of but aside from image burn which is a hassle to make the image first. is there something for burning on the fly or dvd/cd copying? infrarecorder and cdburnerxp do not work for me at all.

View 3 Replies View Related

Software :: Compile Python Source Code With 64 Bit?

Jun 28, 2010

I've taken the source code for Zlib1.2.3, built and installed in a 64 Bit linux machine. Then when i downloaded Python 2.5.4 source and tried to build(make), i got the following error

gcc -pthread -shared build/temp.linux-x86_64-2.5/opt/cinecert/Python-2.5.4/Modules/zlibmodule.o -L/usr/local/lib -lz -o build/lib.linux-x86_64-2.5/zlib.so /usr/bin/ld: /usr/local/lib/libz.a(adler32.o): relocation R_X86_64_32 against `a local symbol' can not be used when making a shared object; recompile with -fPIC /usr/local/lib/libz.a: could not read symbols: Bad value collect2: ld returned 1 exit status

View 3 Replies View Related

General :: Get Apt-get To Install Python Packages For A Different Version Of Python?

Oct 27, 2010

in ubuntu 10.10, I have installed python 2.7. I would like to use apt-get to install packages to this version of python but I haven't been able to figure out howThings I have tried without success:changing the symlink at /usr/bin/python to point to /usr/bin/python2.7 - even after doing this apt-get still installs stuff to python2.6.Set up python2.7 as the primary alternative using update-alternatives - doesn't work

View 3 Replies View Related

Fedora :: Installed Python 3 By Usinh Source Bzipped Tarball - How To Uninstall It

May 23, 2011

I installed Python 3 By Downloading python3.2 bziped source tarball and install it according to the README, Now How shall I uninstall python 3.2?

The README instructions are as below:

On Unix, Linux, BSD, OSX, and Cygwin:

View 3 Replies View Related

Ubuntu :: Put A Print Icon Into A Python Program?

Dec 3, 2010

I am wanting to put a print icon into a Python program and will use printing via the command line via calling lp or lpr.

So a simple question: Whats the difference between lp and lpr?

Also when you type man lp or man lpr the man page says Apple Inc?

View 2 Replies View Related

Ubuntu :: How To Run A Python Program From The Command Line

Jun 14, 2011

i have ubuntu 10.04 and python 2.6 installed how do i run, stop or restart a .py file from the command line.

btw im using Putty from a windows computer

View 1 Replies View Related

Ubuntu :: Make A Program Use An Older Python Version?

Jun 3, 2011

I need to know how to make a program use a version of python older than the newest one. I am trying to run the Traipse fork of OpenRPG. Through their forums, I have learned that one of my problems is that I am running too new a version of python. I have python 2.7.1 installed.

I also have python2.6.6 installed, so I should be able to use that. My first thought was to uninstall 2.7.1 and just use the older version. The problem is that if i uninstall 2.7.1, it wants to also uninstall all the packages dependent on that program. Let's face it, in Natty Narwhal, that is pretty much everything.

Do you know how to force Traipse make it use the 2.6 version?

View 2 Replies View Related

Programming :: Python Program For Time ?

Jun 24, 2011

I need to write a program for time. like i have 2 tasks both minutes and hours.

like this
1st task=5 hours and 30 minutes
2nd task=2hours and 45 minutes

Together they will take 8 hours and 15 minutes.

I need to write a program thats called ADDTIMES to do something like this.

This is what i have so far.

H1=int(input("enter the number of hours:")) etc..

View 6 Replies View Related

General :: Embedding Python Script In C Program?

Apr 7, 2011

How can i embed python script in C program?

View 1 Replies View Related

Programming :: Run External Program From Python Script?

Dec 21, 2009

I want to be able to run a program in a python script, and capture it's output in a variable. I figured out that I can execute it with os.system(), but how do I capture it's output and store it in a variable?

View 1 Replies View Related

General :: Error Unknown Tag: Copyright: Modified CNRI Open Source License While Installing Rpm In Python

Apr 9, 2010

while installing ... Installing python2.4-2.4-1pydotorg.src.rpm

warning: user jafo does not exist - using root
warning: group jafo does not exist - using root
warning: user jafo does not exist - using root
warning: group jafo does not exist - using root
error: Legacy syntax is unsupported: copyright

error: line 55: Unknown tag: Copyright: Modified CNRI Open Source License

View 3 Replies View Related

Programming :: Get Window Titles, Icons And Screenshots From A C++ Or Python Program?

Jan 30, 2011

Is it possible to easily get the number of desktops, add/remove desktops, and get window titles, icons, and screenshots from a C++ or Python program?

View 12 Replies View Related

Programming :: Continue Execution Of A Python Program While A Background Task Is Going On?

Aug 28, 2010

I'm trying to figure out how to continue execution of a Python program while a background task is going on.

In bash, it is adding "&" to the end as in:

Code:
#! /bin/bash
find / -iname "*.py" > /tmp/all_pys &
echo "looking for all python scripts and putting them in /tmp/all_pys"
(yes, I know I could just put the echo BEFORE the find but I just use it for example)

Say I do that in python (not necessarily running the shell, but perhaps using scriptutil.ffind or something similar), but want to allow the user to be doing something else while running that search in the background, how would I thread, fork, subprocess (not to be confused with the module and Popen) [or whatever I should call it] that?

View 14 Replies View Related

Programming :: Python - Call Function From The Command Line After Compile The Program?

Dec 28, 2010

If i have a python file with a function call_me(a,b),how can I call this function from the command line ,after i compile the program?

View 5 Replies View Related

Fedora Security :: Python Library For MLS - Write A Program To Change Range For Users?

Apr 16, 2010

I need to write program (preffer Python) to change range for users. Does anyone know some library which can help me to do that? Maybe someone has written program like that?

View 5 Replies View Related

Ubuntu :: Looking For An Open Source Alternative To A Program?

Jun 14, 2011

My sister works a lot with boating frame design, etc. and she needs a program that calculates all the measurements for you, but the program she wants only runs on Windows and costs $275.
Here is the website to the program: http://www.clearwatercanvas.com/ and/or http://www.kingrichardco.com/FrameBenders/EZFrame.htm

Is there an open sourced alternative to this program that is free, or is there a simple way to make an open sourced alternative?

View 5 Replies View Related

General :: Unload Program Built From Source In Ubuntu?

May 25, 2010

I have downloaded the source code of bochs. and I use make install command to install it onto my box. But how could I uninstall it? I run the sudo apt-get remove bochs, but it said I didn't install the bochs...

View 2 Replies View Related

Fedora Installation :: Use The Source Dvd To Install The Source Package?

Feb 19, 2010

installed the fedora 12, but dont know how to use the source dvd to install the source package.

View 3 Replies View Related

Fedora :: Build A KDE Program From Source?

Apr 9, 2011

I'm trying to build a KDE program from source. I have installed the qt3-devel.i686 package. When I try to configure, I receive this error message

Quote:

checking for KDE... configure: error: in the prefix, you've chosen, are no KDE headers installed. This will fail. use another prefix!

Anyone know how I can build KDE programs in Fedora?

View 1 Replies View Related

Ubuntu Installation :: Compile A Program (powertab Tools) From Source?

Apr 6, 2010

I am new to Linux, and I just tried to compile a program (powertab tools) from source. I'm having som problems doing that. The "./configure" command works fine, but when I run "make", it gives an error:

Code:
seppe@Thuis:~$ cd ptabtools-0.5.0
seppe@Thuis:~/ptabtools-0.5.0$ ./configure
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no

[Code]...

View 1 Replies View Related

General :: Open Source ID/Badge Program

Jul 20, 2011

Anyone know of an Open Source ID/Badge Program? I'm looking into using it in a future business. I'm not worried about all the parts that go to it, just the program, for now.

View 3 Replies View Related

General :: Remove Program Installed From Source?

Feb 28, 2011

I installed nagios program from tar.gz file (from source basically). I didn't use dpkg or apt-get, I used 'configure','make install' and then 'make' scripts. How can I remove this progrma from debian system ?

View 2 Replies View Related

SUSE :: Is There Another Open Source Program For Editing Movies?

Jan 16, 2010

I'm trying to read in a movie from a DVD so I can edit the movie. Using K3b I cannot get the program to read the DVD.What am I doing wrong, and is there another open source program for editing movies?I am on Suse 10.3

View 9 Replies View Related

Software :: Record Line In Source Using Audacity Program?

Oct 21, 2010

I want to record a line-in source Using the Audacity program. but the wave trace in the app is not symmetrical about the zero axis. This is not what I would have expected and I wonder if it will show up as poor quality recordings when I transfer to my hifi.

View 1 Replies View Related

Software :: Image Editing Program - Open Source

Jun 22, 2011

I do a lot of 3D modeling in blender and I would like a program for creating textures for my models. I have used gimp, and it does the job, but it just does not quite fit for me. I do not need anything too fancy. The things that I am looking for in a program are mainly as follows:Layers Image rotation Paint Fill and brush (add on brushes would be nice) Support for png and tiff Levels, curves, hue and saturation.

In short I would like a free (open source is preferred) alternative to something like pixelmater. I can use a cloud based alternative but I really would rather use a stand alone program as I do not always have internet connection. Does such a program exist? What would you use?

View 12 Replies View Related

Software :: Program To Convert C Source Code To Flowchart?

Jul 12, 2010

I've read the threads here and on other forums and searched the web but haven't found a program to fit my desires.

I want to take some existing C source code that is both undocumented and uncommented (definitely not mine)and convert it into a flowchart or other format that is more easily understood.

I've run across many programs of this type for winblows but I don't want that OS on my system regardless of price!

View 2 Replies View Related

Software :: Uninstall Installed Program From Source Code?

May 2, 2010

I install program from source code,how to uninstall it?
I use Yum but not found my program for uninstall.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved