linux如何查看python的版本_linux下获取python的版本号【备忘】 - 东郭黑人的个人传记----人生最宝贵的是生命,生命属于人只有一次。一个人的生命应当这样度过:当他回忆往事的时候,...

1、在Linux命令行底下可以通过python -V查看python版本号

python -V 2>&1 | awk '{print $2}'

2、直接在命令行底下输入

$python

则返回以下内容,也可以“肉眼”获得python的版本号

Python 2.5.1 (r251:54863, Apr 28 2009, 18:32:15)

[GCC 3.4.5 20051201 (Red Hat 3.4.5-2)] on linux2

Type "help", "copyright", "credits" or "license" for more information.

>>>

3、通过python的platform模块获取版本号

$python -c 'import platform; print platform.python_version()'

2.5.1

4、通过python的sys模块获取版本号

$python -c 'import sys; print sys.version' 2>&1

2.5.1 (r251:54863, Apr 28 2009, 18:32:15)

[GCC 3.4.5 20051201 (Red Hat 3.4.5-2)]

可以通过提取相应字段获取版本号

$python -c 'import sys; print sys.version' 2>&1 | awk '$1~/[0-9]\.[0-9].*/{print $1}'

', '隆', '师', '巩', '厍', '聂', '晁', '勾', '敖', '融', '要利用SSH和oshi-core-6.4.0.jar获取远程服务器的系统信息,可以按照以下步骤操作冷', '訾', '辛', '阚', '那', '简', '饶', '空', '曾', '毋',: 1. 首先,在项目的pom.xml文件中添加以下依赖: ```xml <dependency> <groupId>com '沙', '乜', '养', '鞠', '须', '丰', '巢', '关', '蒯', '相.jcraft</groupId> <artifactId>jsch</artifactId> <version>0.1.55</version> </', '查', '後', '荆', '红', '游', '竺', '权', '逯', '盖', 'dependency> <dependency> <groupId>com.github.oshi</groupId> <artifactId>oshi-core</artifactId> <version>6.4.0</version> </dependency> ``` 2. 接着,编写Java代码,使用JSch库益', '桓', '公', '万俟', '司马', '上官', '欧阳', '夏侯', '连接到远程服务器并执行命令,然后使用oshi-core库获取系统信息。以下是示例代码: ```java import com.jcraft.jsch.*; import oshi.SystemInfo; import oshi.hardware.CentralProcessor; import oshi.hardware.HardwareAbstraction诸葛', '闻人', '东方', '赫连', '皇甫', '尉迟', '公羊', '澹Layer; import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; public class RemoteSystemInfo { public static void main台', '公冶', '宗政', '濮阳', '淳于', '单于', '太叔', '申屠(String[] args) throws Exception { String host = "remote.server.com"; String username = "username"; String password = "password"; String command = "uname -a"; JSch jsch = new JSch(); Session session = jsch.getSession(username', '公孙', '仲孙', '轩辕', '令狐', '锺离', '宇文', '长孙',, host, 22); session.setPassword(password); session.setConfig("StrictHostKeyChecking", "no"); session.connect(); '慕容', '鲜于', '闾丘', '司徒', '司空', '亓官', '司寇', ' ChannelExec channelExec = (ChannelExec) session.openChannel("exec"); InputStream in = channelExec.getInputStream(); channelExec.setCommand仉督', '子车', '颛孙', '端木', '巫马', '公西', '漆雕', '乐(command); channelExec.connect(); BufferedReader reader = new BufferedReader(new InputStreamReader(in)); String line; while ((line = reader.readLine()) != null) { System.out.println(line); } reader.close(); channelExec.disconnect(); session.disconnect(); System正', '壤驷', '公良', '拓跋', '夹谷', '宰父', '谷梁', '楚晋Info systemInfo = new SystemInfo(); HardwareAbstractionLayer hal = systemInfo.getHardware(); CentralProcessor cpu = hal.getProcessor', '阎法', '汝鄢', '涂钦', '段干', '百里', '东郭', '南门',(); System.out.println("CPU load: " + cpu.getSystemCpuLoad()); System.out.println("Memory: " + hal.get '呼延', '归海', '羊舌', '微生', '岳帅', '缑亢', '况后', 'Memory().getAvailable()); // 其他系统信息可以根据需要使用oshi-core库获取 } } ``` 请注意,示例代码中的username、password和host应该替换为实际的值。同时,需要确保当前机器能有琴', '梁丘', '左丘', '东门', '西门', '商牟', '佘佴', '伯够SSH连接到远程服务器,且远程服务器上已经安装oshi-core-6.4.0.jar库。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值