博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Command Line 3
阅读量:5141 次
发布时间:2019-06-13

本文共 911 字,大约阅读时间需要 3 分钟。

Python Script:

1. Add some lines into a blank file: 

  echo "hello world" >> text.txt.

  Everytime before create a script file. we have some steps:

  a. Create a .script file by using mkdir text.script

  b. add some lines into the script to make sure the file is allowed to run under the shell:

    echo 'if __name__ == "__main__":\n    print("Welcome to a Python script")' > script.py # here we are using single bracket on each side of echo word.Pay attention that there are four space before print.

    

2.  We can use python2 to call the script:

  python text.script 

   Or use python3 to call the script:

  python3 text.script 

  Here, we can use python3 or python2 to call the script. But sometimes, if several project want to call a same library in different version. 

3.  Why we want to use virtual environment:

  

 So if we use virtual environment:

    

 

    

转载于:https://www.cnblogs.com/kingoscar/p/6021627.html

你可能感兴趣的文章
Java web分页技术(jsp+servlet+Dao+javabean)
查看>>
获取Excel文件内容,0307通用
查看>>
【转载】C#检测客户端输入的内容是否含有危险字符串
查看>>
四则运算2
查看>>
点聚合功能改良版本
查看>>
Tensorflow学习教程------读取数据、建立网络、训练模型,小巧而完整的代码示例...
查看>>
Linq to EF 与Linq to Object 使用心得
查看>>
Webform Repeater 显示主外键关系的两个表,参考代码
查看>>
fseek, _fseeki64 的区别
查看>>
USACO 5.1 Starry Night(模拟题)
查看>>
HDU 4433 locker(SPFA+DP)
查看>>
Hills And Valleys
查看>>
无敌简单快速的文件服务器sgfs
查看>>
Scala实战高手****第8课:零基础实战Scala最常用数据结构Map和Tuple及Spark源码鉴赏...
查看>>
Spring源码分析之——导入spring-framework源代码到Eclipse
查看>>
jQuery EasyUI API 中文文档 - 菜单(Menu)
查看>>
CSS气泡提示框 可自定义配置箭头
查看>>
PHP常用函数封装
查看>>
[SCM]源码管理 - perforce命令行高级
查看>>
jsp公共头信息的抽取(相对路径的修改)
查看>>