Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
How to install python through command line? Can i create a batch file and run it? I tried searching over the internet but with no help.
You can read about downloading and installing from a Windows command prompt here
Even though it does contain information on Putty shell and Linux it is n't far off from Windows install. But my honest opinion is just going to the website and downloading with the pre packaged modules. Just click Windows 64 bit and it includes everything you need. After it has been installed then of course interact and use the command prompt all you want. Unless you want to be a complete command line ninja. python.org/download/windows
Related
Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed yesterday.
Improve this question
I can't install peotry on my VSCode repo which I have created as a python tutorials. actually I want to start python for testing web application.So I choosed this website to go through and I got some errors. this is the first one.
Command Line error
this is my dependencies I have added
My dependency file
this tutorial I followed and got this error. tried many stackoverflow support but didnt worked out.
https://www.lambdatest.com/blog/getting-started-with-selenium-python/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
When I want to execute Python in my command prompt, Windows always redirects me to the windows store to download Python. But I've already installed Python (python.org). So how can I adjust, that the command prompt uses the downloaded Python?
Just py instead of python or python3
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
Just like the title says, I would like to turn on my raspberry pi and have it automatically open a terminal and that terminal would automatically start a python script. Preferably in a way where I can run 4 different terminals each running a different .py file.
I have done the rc.local approach but the programs do not open in a terminal and that is essential for the functionality of the code.
Any suggestions?
Edit the file found here:
/etc/xdg/lxsession/LXDE/autostart
add your commands to it
#python PathToScript/script.py
Edit: I realize you want the terminal open. I believe this will work
#lxterminal --command "python pathToScript/script.py"
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
We are having difficulty installing our Python distribution in a way that will allow multiple users of the same computer to program in Python.
We switched the computers in our lab over to active directory with a mandatory profile. The problem is that Enthought Canopy puts several hundred MB of material in the profile itself. This makes it incredibly slow when a new user logs on. Can I get Canopy to install somewhere else, like a "normal" program?
Any help would be much appreciated, and I apologize if there is some obvious answer I am missing.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I have python 3.1 installed, and I have added it to the system path too. Now I can open "cmd" and type python to start python, but whenever I try to open cmd in a specific directory by using (shift + right click -> open command prompt here), and type python, it says "command not found"!
How can I fix this?
Right click on my computer>got to properties>advanced settings>environmental variables>
choose path and add the installed python dirtory to that path as like below:
C:\WINDOWS\system32;C:\WINDOWS;C:\Python27
You need to set up the environment variables in Windows.