1. First create the file (cd to the directory where it needs to be placed) touch myTest.py 2. Edit myTest.py vi myTest.py Add content inside #! /usr/bin/env python Then add the code you need to add print('hello, world!') Then enter command mode, :wq save and exit vi 3. Change the permissions of myTest.py as needed. This is mainly used for testing, so do not set it to 777 chmod 777 myTest.py 4. This is to run myTest.py directly in the current directory (similar to directly executing exe in windows) ./myTest.py The above method of directly running py files in Linux is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Detailed explanation of JS ES6 coding standards
>>: Why do select @@session.tx_read_only appear in DB in large quantities?
As we all know, binlog logs are very important fo...
The previous article explained how to reset the M...
What is a generator? A generator is some code tha...
Recently, when I was learning docker, I found tha...
First of all, what is 404 and soft 404? 404: Simpl...
In the process of Django web development, when wr...
Description: Set a timer to replace the content of...
This article example shares the specific code of ...
Table of contents 1. Introduction to High Availab...
1. Let's look at a table creation statement f...
Copy code The code is as follows: li {width:300px...
This is an enhanced version. The questions and SQ...
Table of contents 1. Introduction to Portainer 2....
Configuration Example upstream backend { server b...
This article uses examples to describe the operat...