Help me find Python interpreter!!!


 
Thread Tools Search this Thread
Operating Systems Solaris Help me find Python interpreter!!!
# 1  
Old 08-12-2009
Help me find Python interpreter!!!

I just started learning python on and working on sun solaries,

#!/usr/bin/env python


Is not recognising the intrepreter on my sun solaries could any one please help me find this.

Thanks - AnnSmilie
# 2  
Old 08-12-2009
Try
Code:
which python

that will show you where python lives. Assume it is:
/usr/local/sbin/python

then you would code this shebang
Code:
#!/usr/local/sbin/python

python is optional it is not always installed in the same place on all machines.
# 3  
Old 08-12-2009
Code:
find / -fstype ufs -type f -name python -ls

# 4  
Old 08-13-2009
Quote:
Originally Posted by seg
Code:
find / -fstype ufs -type f -name python -ls

I wouldn't suggest "-fstype ufs" as it rules out zfs and vxfs.
# 5  
Old 08-13-2009
Quote:
Originally Posted by jlliagre
I wouldn't suggest "-fstype ufs" as it rules out zfs and vxfs.
I wouldn't suggest using zfs or vxfs Smilie
# 6  
Old 08-13-2009
The open poster might use it anyway.

In any case, I always suggest to use ZFS Smilie
# 7  
Old 08-14-2009
To get it working on my SPARC I first checked if it was installed using:
Code:
which python

It wasn't in my path so I put it in my path by editing '/home/bradj47/.cshrc'. It was way easier than downloading the interpreter and contacting my network administrator to give me the permissions to install it.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Programming

Create a C source and compile inside Python 1.4.0 to 3.7.0 in Python for ALL? platforms...

Hi all... As you know I like making code backwards compatible for as many platforms as possible. This Python script was in fact dedicated for the AMIGA A1200 using Pythons 1.4.0, 1.5.2, 1.6.0, 2.0.1, and 2.4.6 as that is all we have for varying levels of upgrades from a HDD and 4MB FastRam... (1 Reply)
Discussion started by: wisecracker
1 Replies

2. Programming

Search or find a element inside list python

I have a list as follows: From this i need to grep the element using keyword as "primary" and return output as 12:13-internet-wifi-primary i used as follows if (i <= (len(system_info))): ss = system_info print... (5 Replies)
Discussion started by: Priya Amaresh
5 Replies

3. Shell Programming and Scripting

Find common values in python list in ordered format

Hello All, There are various codes available to find the intersection between two sets in python. But my case is the following: I want to find the continual common pattern in different lists compared to list1. (i have underlined the longest common patterns in set a and set b) a = 2, 3, 5,... (1 Reply)
Discussion started by: Zam_1234
1 Replies

4. Shell Programming and Scripting

**python** unable to read the background color in python

I am working on requirement on spreadsheet in python scripting. I have a spreadsheet containing cell values and with background color. I am able to read the value value but unable to get the background color of that particular cell. Actually my requirement is to read the cell value along... (1 Reply)
Discussion started by: giridhar276
1 Replies

5. Shell Programming and Scripting

Python: find the minimum in all rows

I am using Biopython to process an alignment in fasta format. I need to slice the sequences where there is the first stop codon. So I divided my alignment in codons and found the stop. I then found the first codon position using enumerate(). But I found the minimum for each row. However I need to... (0 Replies)
Discussion started by: Homa
0 Replies

6. Shell Programming and Scripting

Bad Interpreter

Hi. My name is Caleb (a.k.a RagingNinja) form the whited00r forums. (Whited00r makes custom firmware for iOS devices). I have been learning and creating simple shells scripts. I have been recently using VIM for Windows or using VirtualBox to run the UBUNTU OS within VirtualBox to create my shell... (2 Replies)
Discussion started by: RagingNinja
2 Replies

7. Shell Programming and Scripting

Find text containing paths and replace with a string in all the python files

I have 100+ python files in a single directory. I need to replace a specific path occurrence with a variable name. Following are the find and the replace strings: Findstring--"projects\\Debugger\\debugger_dp8051_01\\debugger_dp8051_01.cywrk" Replacestring--self.projpath I tried... (5 Replies)
Discussion started by: noorsam
5 Replies

8. UNIX for Dummies Questions & Answers

an command interpreter

if somebody can help me pls. i need the source code for a shell which compiles C or java programs. i need a very short and simple one, just for the compiling part, in UNIX Respect (4 Replies)
Discussion started by: zlatan005
4 Replies

9. Shell Programming and Scripting

python and string.find

Hi all, I'm not sure if this is the right forum, but i'll give it a try. Here is my problem: i have two files having basically the same things in it (hostnames): File 1 mituap01 mituap02 mituap03 File 2: mituap01 mituap04 mituap05 my goal is to get a .py out to check if pcs' in... (0 Replies)
Discussion started by: penguin-friend
0 Replies
Login or Register to Ask a Question