- |Python| урок 1.2: установка интерпретатора в Windows
- Как запустить код на Python?
- Запуск кода Python: интерактивный режим в CMD
- Запуск Python: интерактивный режим в IDLE
- Как запустить приложение Python в пакетном режиме?
- Делаем выводы:
- How do I run a Python program in the Command Prompt in Windows 7?
- 23 Answers 23
- Running Python scripts conveniently under Windows
- Making sure Windows can find the Python interpreter
- Associating Python with .py and .pyc
- Omitting the .py extension (editing PATHEXT)
- Adding scripts to the system PATH
- Running directly without tweaking the PATH
- Creating shortcuts or batch files
- Advanced: appending to PYTHONPATH
|Python| урок 1.2: установка интерпретатора в Windows
Windows далеко не всегда включает поддержку Python . Скорее всего, Вам придется загрузить и установить Python, а затем загрузить и установить текстовый редактор. Для начала проверим , есть ли в Вашей операционной системе поддержка Python . Откройте командную строку: введите command в меню Пуск или (в Windows 10) в поиске: cmd или командная строка . Также можно нажать сочетание клавиш Win+R , после, в открывшемся окне написать: cmd и нажать Enter . После этого, у Вас откроется командная строка. В итоге, напишите в окне :
Если на экране появится >>> , то в Вашей системе установлена поддержка Python . Также, вполне возможно, Вам высветится сообщение об ошибке. Все просто — в Вашей системе нет Python-а . Это не проблема, вскоре я все Вам объясню. Для установки Python в Windows потребуется больше усилий (возможно Вы это сами заметили!). Заходим на официальный сайт Python и скачиваем, либо самую новую версию ( на данный момент ссылка-установщик в желтой кнопке ), либо ту версию, какая необходима именно Вам ( не забывайте про то, что файл можно скачать, как для Windows 32 , так и для Windows 64 . Разницу между этими цифрами объясню в следующем уроке ). После установки, открываем скачанный файл. Спокойно нажимайте на все » продолжить » и » соглашаюсь «, не забывая при этом ОБЯЗАТЕЛЬНО поставить галочку на Add Python to PATH , ведь это в дальнейшем НАМНОГО упростит дальнейшую настройку текстового редактора и системы.
Настроить текстовый редактор будет несложно, если вы сначала подготовите систему к запуску Python в терминальном сеансе. Откройте окно командной строки и введите команду:
И если на окне появятся приглашение Python ( >>> )и версия Python-а, значит система Windows обнаружила установленную версию Python. Однако, может высветится ошибка, что говорит о том, что Windows просто напросто не видит Python в Вашей системе. Для начала найдем папку Python35( если версия установленного Python-а: 3.5 ) в Вашей системе. Искать нужно в проводнике. Как правило путь этой папки такой: C:\Users\(ИМЯ ПОЛЬЗОВАТЕЛЯ)\AppData\Local\Programs\Python\Python35 или: C:\Python35 . В крайнем случае можно написать в поиске Windows или проводника: python , и тогда система выдаст все файлы и папки, которые имеют python в своем названии. В конце концов в папке с названием той версии, которой Вы установили ранее, должен быть файл python.exe . После того, как Вы нашли его, скопируйте путь к файлу из проводника
Если это сработает, то Вам нужно будет каждый раз заходить в терминальный сеанс Python входить таким способом .
Совет: для того, чтобы узнать версию Python без обращения к терминальному сеансу Python, напишите :
Если у Вас появится ошибка при выполнении этой команды, значит Python не установлен в Вашей системе ( прочитайте инструкцию по установке Python выше )
Еще один совет: очень вероятно, что Вы установили несколько интерпретаторов . Тогда Вы можете убедиться какой именно версии интерпретатор Вы нашли. Откройте папку с файлом python.exe (читайте выше, как его найти) и кликните по нему правой кнопкой мыши, а после выберите « Свойства «
После, в командной строке вставляем адрес к файлу, которому мы нашли выше и дописываем: \python — version . Покажу на примере из скриншота:
Как запустить код на Python?
В одной из предыдущих статей рассказывалось, как установить Python на операционные системы Windows и Linux. Этот материал посвящён запуску и первоначальной работе с «Пайтоном». Будут рассмотрены два основных способа запустить его: интерпретация строк исходного кода, вводимого с помощью клавиатуры (интерактивный режим), а также исполнение файлов с кодом (пакетный режим). Отдельный разговор пойдёт про особенности запуска программы и кода Python в Windows и Linux. Материал предназначен для начинающих.
Язык программирования «Пайтон» является интерпретируемым. В этом контексте можно сказать, что кроме самой программы, пользователю ещё нужен и специальный инструмент, обеспечивающий её запуск.
Вернувшись на несколько шагов назад, следует напомнить, что языки программирования бывают: — компилируемыми. С высокоуровневого языка код переводится в машинный с учётом конкретной платформы. Далее распространение происходит в качестве бинарного файла (чаще всего). Запускаться такая программа может без дополнительных программных средств (необходимые библиотеки следует оставить за рамками данного обсуждения). Наиболее распространёнными компилируемыми языками программирования являются C++ и C; — интерпретируемыми. В этом случае выполнение программы осуществляется интерпретатором с последующим распространением в виде исходного кода. Самый популярный язык из этой категории — общеизвестный «Питон» или «Пайтон» (Python).
Запуск кода Python: интерактивный режим в CMD
Python способен функционировать в 2-х режимах: — пакетный; — интерактивный.
Пользователям Windows можно проверить интерактивный режим работы с кодом с помощью командной строки (CMD, command line interpreter — интерпретатор командной строки). Открыв командную строку, следует набрать следующую команду:
Итогом станет запуск «Пайтона» в интерактивном режиме. Далее программа станет ждать ввод последующих команд (commands) от пользователя. Вот, как это может выглядеть:
Программа готова к запуску кода. Прекрасный пример — использование классического приветствия, в которое можно внести минимальные изменения: print(«Привет, OTUS!») . В таком коде внутри скобок пользователь может написать и другие фразы.
Зелёная стрелка — это команда, красная — результат. По коду видно, что программа отработала без затруднений.
Но возможности «Пайтона» выходят далеко за пределы стандартного «хэллоуворлда». Его без проблем можно использовать и в качестве калькулятора, выполняя вычисления.
А при подключении соответствующих библиотек, эти вычисления могут быть весьма сложны и мало уступят специализированным пакетам Matlab.
Далее следует выйти из интерактивного режима, набрав простую команду exit() .
Запуск Python: интерактивный режим в IDLE
При установке языка программирования Python в комплекте с ним идёт IDLE. Это интегрированная среда разработки, подобная по своей сути интерпретатору, который запущен интерактивно. Отличие — расширенный набор возможностей. Среди таких возможностей: — отладка; — просмотр объектов; — подсветка синтаксиса и прочие.
Чтобы запустить IDLE в Windows, следует перейти в меню «Пуск», где можно без проблем найти нужный инструмент:
После запуска пользователь увидит следующую среду:
В ней можно тоже полноценно работать с кодом.
Если же разговор идёт про Linux, то в этой операционной системе IDLE-оболочка по дефолту отсутствует, поэтому придётся её инсталлировать. Для Python 3.4 это будет выглядеть так:
Итогом станет загрузка IDLE на персональный компьютер пользователя. Запустить оболочку тоже несложно:
Выглядеть среда будет следующим образом:
Как запустить приложение Python в пакетном режиме?
Бывает, у пользователя уже есть Python-файлы с расширением .py. Их тоже можно запустить через командную строку. Для этого вызывается интерпретатор Python, а в качестве аргумента передаётся соответствующий файл.
Давайте продемонстрируем это на практике. Откройте блокнот и поместите туда уже знакомые строки кода:
Сохраните файл под именем example.py. Пусть он будет сохранен на диске C (можно выбрать и другую директорию на усмотрение пользователя).
Теперь откройте командную строку, перейдите в соответствующую директорию и можете запускать файл:
Красная стрелка — переход в нужную директорию, синяя — команда для запуска «Питона» в пакетном режиме, зелёная — итоговый результат. Всё просто.
Делаем выводы:
- Чтобы запустить «Пайтон» в интерактивном режиме, надо набрать в командной строке (cmd) имя интерпретатора — python (иногда это python3) либо запустить интегрированную среду разработки IDLE.
- Чтобы выполнить запуск в пакетном режиме, надо ввести в командной строке имя интерпретатора, плюс имя файла. В нашем случае это python.example.py .
Для закрепления материала настоятельно рекомендуется повторить всё вышеописанное самостоятельно.
How do I run a Python program in the Command Prompt in Windows 7?
I’m trying to figure out how to run Python programs with the Command Prompt on Windows 7. (I should have figured this out by now. )
When I typed «python» into the command prompt, I got the following error:
‘python’ is not recognized as an internal or external command, operable program or batch file.
It was somewhat helpful, but the tutorial was written for Windows 2000 and older, so it was minimally helpful for my Windows 7 machine. I attempted the following:
For older versions of Windows the easiest way to do this is to edit the C:\AUTOEXEC.BAT >file. You would want to add a line like the following to AUTOEXEC.BAT:
This file did not exist on my machine (unless I’m mistaken).
In order to run programs, your operating system looks in various places, and tries to match the name of the program / command you typed with some programs along the way.
control panel > system > advanced > |Environmental Variables| > system variables -> Path
this needs to include: C:\Python26; (or equivalent). If you put it at the front, it will be the first place looked. You can also add it at the end, which is possibly saner.
Then restart your prompt, and try typing ‘python’. If it all worked, you should get a «>>>» prompt.
This was relevant enough for Windows 7, and I made my way to the System Variables. I added a variable «python» with the value «C:\Python27»
I continued to get the error, even after restarting my computer.
Anyone know how to fix this?
23 Answers 23
You need to add C:\Python27 to your system PATH variable, not a new variable named «python».
Find the system PATH environment variable, and append to it a ; (which is the delimiter) and the path to the directory containing python.exe (e.g. C:\Python27 ). See below for exact steps.
The PATH environment variable lists all the locations that Windows (and cmd.exe ) will check when given the name of a command, e.g. «python» (it also uses the PATHEXT variable for a list of executable file extensions to try). The first executable file it finds on the PATH with that name is the one it starts.
Note that after changing this variable, there is no need to restart Windows, but only new instances of cmd.exe will have the updated PATH. You can type set PATH at the command prompt to see what the current value is.
Exact steps for adding Python to the path on Windows 7+:
- Computer -> System Properties (or Win+Break ) -> Advanced System Settings
- Click the Environment variables. button (in the Advanced tab)
- Edit PATH and append ;C:\Python27 to the end (substitute your Python version)
- Click OK. Note that changes to the PATH are only reflected in command prompts opened after the change took place.
Assuming you have Python2.7 installed
Goto the Start Menu
Right Click «Computer»
A dialog should pop up with a link on the left called «Advanced system settings». Click it.
In the System Properties dialog, click the button called «Environment Variables».
In the Environment Variables dialog look for «Path» under the System Variables window.
Add «;C:\Python27» to the end of it. The semicolon is the path separator on windows.
Click Ok and close the dialogs.
Now open up a new command prompt and type «python»
It has taken me some effort looking for answers here, on the web, and and in the Python documentation, and testing on my own, to finally get my Python scripts working smoothly on my Windows machines (WinXP and Win7). So, I just blogged about it and am pasting that below in case it’s useful to others. Sorry it’s long, and feel free to improve it; I’m no expert.
[UPDATE: Python 3.3 now includes the Python Launcher for Windows, which allows you to type py (rather than python) to invoke the default interpreter, or py -2, py -3, py -2.7, etc. It also supports shebang lines, allowing the script itself to specify. For versions prior to 3.3, the launcher is available as a separate download. http://docs.python.org/3/whatsnew/3.3.html ]
Running Python scripts conveniently under Windows
Maybe you’re creating your own Python scripts, or maybe someone has given you one for doing something with your data files. Say you’ve acquired a Python script and have saved it to «D:\my scripts\ApplyRE.py». You want to run it conveniently by either double-clicking it or typing it into the command line from any location, with the option of passing parameters to it like this (-o means «overwrite the output file if it already exists»):
Say you also have a data file, «C:\some files\some lexicon.txt». The simplest option is to move the file or the script so they’re in the same location, but that can get messy, so let’s assume that they’ll stay separate.
Making sure Windows can find the Python interpreter
After installing Python, verify that typing python into a command prompt works (and then type exit() to get back out of the Python interpreter).
If this doesn’t work, you’ll need to append something like «;C:\Python32» (without quotes) to the PATH environment variable. See PATHEXT below for instructions.
Associating Python with .py and .pyc
Verify that double-clicking on ApplyRE.py runs it. (It should also have a Python logo as its icon and be labeled «Python File», by the way.) If this isn’t already done, right-click on a .py file, choose Open With, Choose Program, and check «Always use. » This association improves convenience but isn’t strictly necessary—you can specify «python» every time you want to run a script, like this:
Here’s a very specific variation, which is optional unless you need to specify a different version of the interpreter.
But that’s a pain. Fortunately, once Python is installed, in the PATH, and associated with .py, then double-clicking a .py file or directly typing it as a command should work fine. Here, we seem to be running the script directly—it’s nice and simple to run it on a sample file that’s located in the «my scripts» folder along with the script.
Omitting the .py extension (editing PATHEXT)
To further reduce typing, you can tell Windows that .py (and perhaps .pyc files) are executable. To do this, right-click Computer and choose Properties, Advanced, Environment Variables, System Variables. Append «;.PY;.PYC» (without quotes) to the existing PATHEXT variable, or else create it if you’re certan it doesn’t exist yet. Close and reopen the command prompt. You should now be able to omit the .py (FYI, doing so would cause ApplyRE.exe or ApplyRE.bat to run instead, if one existed).
Adding scripts to the system PATH
If you’re going to use your scripts often from the command prompt (it’s less important if doing so via using BAT files), then you’ll want to add your scripts’ folder to the system PATH. (Next to PATHEXT you should see a PATH variable; append «;D:\my scripts» to it, without quotes.) This way you can run a script from some other location against the files in current location, like this:
Success! That’s pretty much all you need to do to streamline the command-line.
Running directly without tweaking the PATH
If you’re a fast typist or don’t mind creating a batch file for each situation, you can specify full paths (for the script, or for the parameters) instead of tweaking PATH.
Creating shortcuts or batch files
If .py is associated with an installed Python, you can just double-click ApplyRE.py to run it, but the console may appear and disappear too quickly to read its output (or failure!). And to pass parameters, you’d need to first do one of the following. (a) Right-click and create a shortcut. Right-click the shortcut to edit properties and append parameters to Target. (b) Create a batch file—a plain text file with a distinct name such as ApplyRErun.bat. This option is probably better because you can ask it to pause so you can see the output. Here is a sample BAT file’s contents, written to be located and run from c:\some files .
Advanced: appending to PYTHONPATH
This usually isn’t necessary, but one other environment variable that may be relevant is PYTHONPATH. If we were to append d:\my scripts to that variable, then other Python scripts in other locations could make use of those via import statements.
Python comes with a script that takes care of setting up the windows path file for you.
After installation, open command prompt
Go to the directory you installed Python in
Run python and the win_add2path.py script in Tools\Scripts
Now you can use python as a command anywhere.
You have to put the python path in the PATH variable.
In the System Variables section, you should have User Variables and System Variables. Search for the PATH variable and edit its value, adding at the end ;C:\python27 .
The ; is to tell the variable to add a new path to this value, and the rest, is just to tell which path that is.
On the other hand, you can use ;%python% to add the variable you created.
You don’t add any variables to the System Variables. You take the existing ‘Path’ system variable, and modify it by adding a semi-colon after, then c:\Python27
So after 30 min of R&D i realized that after setup the PATH at environment variable
C:> cd Python27 C:\ Python27> python.exe
USE python.exe with extension
alternative option is :
if the software is installed properly directly run Python program, your command line screen will automatically appear without cmd.
Go to the Start Menu
Right Click «Computer»
A dialog should pop up with a link on the left called «Advanced system settings». Click it.
In the System Properties dialog, click the button called «Environment Variables».
In the Environment Variables dialog look for «Path» under the System Variables window.
Add «;C:\Python27» to the end of it. The semicolon is the path separator on windows.
Click Ok and close the dialogs.
Now open up a new command prompt and type «python» or if it says error type «py» instead of «python»
Even after going through many posts, it took several hours to figure out the problem. Here is the detailed approach written in simple language to run python via command line in windows.
1. Download executable file from python.org
Choose the latest version and download Windows-executable installer. Execute the downloaded file and let installation complete.
2. Ensure the file is downloaded in some administrator folder
- Search file location of Python application.
- Right click on the .exe file and navigate to its properties. Check if it is of the form, «C:\Users. «. If NO, you are good to go and jump to step 3. Otherwise, clone the Python37 or whatever version you downloaded to one of these locations, «C:\», «C:\Program Files», «C:\Program Files (x86)».
3. Update the system PATH variable This is the most crucial step and there are two ways to do this:- (Follow the second one preferably)
1. MANUALLY
— Search for ‘Edit the system Environment Variables’ in the search bar.(WINDOWS 10)
— In the System Properties dialog, navigate to «Environment Variables».
— In the Environment Variables dialog look for «Path» under the System Variables window. (# Ensure to click on Path under bottom window named System Variables and not under user variables)
— Edit the Path Variable by adding location of Python37/ PythonXX folder. I added following line:-
» ;C:\Program Files (x86)\Python37;C:\Program Files (x86)\Python37\Scripts »
— Click Ok and close the dialogs.