> adeskbar.0.3.7-all.debDependencies:python , python-gtk2 , python-cairo ( usually already installed )optional : python-dbusplugin :
I am trying to install Python 3.2 and mod_wsgi on my web server, but I am not having much luck.
I am using linux mint, and to run a python file I have to type in the terminal: python [file path], so is there way to make the file executable, and make it run the python command automatically when I doublr click it?
And since I stopped dealing with windows ages ago, I wonder if the .py files there are also automatically executable or do I need some steps.
Thanks
I have just installed Python 2.7 and Python 3.2 on my Ubuntu 12.04 (32 bit).
sudo apt-get install python python-doc python3 python3-doc
I opened a Python 3 shell (is it called like that) typing python3 from a terminal.
If I issue the command help('print') everything works fine and I can read the documentation.
However if I open a Python 2.7 shell (python from a terminal) when I type help('prin
I downloaded python 3.3.0 which is latest version and i finished installing
now I want to run it in my centOS linux but when i type it in console "python" , python 2.7.0 which is bundled with os installation runs.
how can i change it to run 3?
I vaguely feel that i have to change the code about path in bin folder or something
I need newer Python so I downloaded .tar.gz from the site, unpacked, run ./configure; make; make altinstall. I had then separate Python 2.7 and default 2.5 and all worked fine.
But recently I needed to recompile Python with new libraries and instead of make altinstall I run make install. That replaced CentOS Python 2.5 with 2.7.
I'm trying to install a client for openERP which requires the following python libraries:
Code:
python
python-gtk2
python-glade2
python-matplotlib
python-egenix-mxdatetime
python-xml
OS version:Ubuntu 12.04 LTS
Hey all, I recently started programming in python, so I went to download python 3.0, and it appears I have ruined all python files on my installation, whenever I try to run anything with python I get this error:
chris@chris-Modena-M101:~$ python
bash: /usr/bin/python: No such file or directory
chris@chris-Modena-M101:~$
I tried to install Python 3 again it said it
Hi,
I'm writing a Python script to automate a few things for me in Terminal, but whenever I use
Code:
os.system("cd ~/path")
nothing happens... Is it possible for a Python script to change directory in this way? Any other commands I use execute fine...
Thanks :)