| .. | |||||
| easy_install | |||||
| easy_install-3.3 | |||||
| lswsgi | |||||
| pip | |||||
| pip3 | |||||
| pip3.3 | |||||
| pydoc3 | |||||
| pydoc3.3 | |||||
| python3 | |||||
| python3-config | |||||
| python3.3 | |||||
| python3.3-config | |||||
| python3.3m | |||||
| python3.3m-config | |||||
| python3.3m-x86_64-config | |||||
| pyvenv | |||||
| pyvenv-3.3 |
#!/opt/alt/python33/bin/python3.3m
# -*- python -*-
import sys
import subprocess
ver = sys.version[:3]
arch = subprocess.check_output('uname -m'.split()).decode("utf-8").rstrip()
call = ['python{ver}m-{arch}-config'.format(ver=ver, arch=arch)] + sys.argv[1:]
retval = subprocess.call(call)
if retval == 127:
print('Could not find python{ver}m-{arch}-config. Look around to see available arches.'.format(ver=ver, arch=arch), file=sys.stderr)
| .. | |||||
| easy_install | |||||
| easy_install-3.3 | |||||
| lswsgi | |||||
| pip | |||||
| pip3 | |||||
| pip3.3 | |||||
| pydoc3 | |||||
| pydoc3.3 | |||||
| python3 | |||||
| python3-config | |||||
| python3.3 | |||||
| python3.3-config | |||||
| python3.3m | |||||
| python3.3m-config | |||||
| python3.3m-x86_64-config | |||||
| pyvenv | |||||
| pyvenv-3.3 |